feat: scaffold markovian-rsa-mlx package + CLI
Public release v0.1.0 in progress. MIT, Python 3.12+, depends on kyr0/mlx-lm fork (feat/zaya-support) for ZAYA model support until upstream PR #1261 merges.
This commit is contained in:
2
src/markovian_rsa_mlx/__init__.py
Normal file
2
src/markovian_rsa_mlx/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
"""Markovian RSA test-time compute methodology on MLX."""
|
||||
__version__ = "0.1.0"
|
||||
20
src/markovian_rsa_mlx/cli.py
Normal file
20
src/markovian_rsa_mlx/cli.py
Normal file
@@ -0,0 +1,20 @@
|
||||
"""Typer CLI for markovian-rsa-mlx."""
|
||||
import typer
|
||||
|
||||
app = typer.Typer(help="Markovian RSA orchestrator for ZAYA1-8B on MLX.")
|
||||
|
||||
|
||||
@app.callback()
|
||||
def _root() -> None:
|
||||
"""Markovian RSA orchestrator for ZAYA1-8B on MLX."""
|
||||
|
||||
|
||||
@app.command()
|
||||
def version() -> None:
|
||||
"""Print version."""
|
||||
from markovian_rsa_mlx import __version__
|
||||
typer.echo(__version__)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
app()
|
||||
Reference in New Issue
Block a user