Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add n_ctx for nexa_service #95

Merged
merged 7 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions nexa/cli/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ def main():
server_parser.add_argument("--host", type=str, default="0.0.0.0", help="Host to bind the server to")
server_parser.add_argument("--port", type=int, default=8000, help="Port to bind the server to")
server_parser.add_argument("--reload", action="store_true", help="Enable automatic reloading on code changes")
server_parser.add_argument("--nctx", type=int, default=2048, help="Length of context window")

# Other commands
subparsers.add_parser("pull", help="Pull a model from official or hub.").add_argument("model_path", type=str, help="Path or identifier for the model in Nexa Model Hub")
Expand Down
Loading
Loading