chore: make models a requirements

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
This commit is contained in:
Aaron Pham
2025-04-11 06:43:19 +00:00
parent 8a75c99a46
commit 3f91339cf6

View File

@@ -216,7 +216,7 @@ def hello(repo: typing.Optional[str] = None) -> None:
@app.command(help='start an OpenAI API compatible chat server and chat in browser')
def serve(
model: typing.Annotated[str, typer.Argument()] = '',
model: typing.Annotated[str, typer.Argument()],
repo: typing.Optional[str] = None,
port: int = 3000,
verbose: bool = False,