mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-22 14:31:26 -05: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()
|