Files
OpenLLM/openllm-python/src/openllm/__main__.py
2023-08-15 02:11:14 -04:00

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()