mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-05-01 04:12:41 -04:00
14 lines
248 B
Python
14 lines
248 B
Python
"""CLI entrypoint for OpenLLM.
|
|
|
|
Usage:
|
|
openllm --help
|
|
|
|
To start any OpenLLM model:
|
|
openllm start <model_name> --options ...
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
if __name__ == "__main__":
|
|
from openllm.cli.entrypoint import cli
|
|
cli()
|