From 19b14182b7fe1fa3edee60c905358a9e67d343a8 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Fri, 29 Sep 2023 18:27:47 -0700 Subject: [PATCH] add --deploy --- litellm/proxy/proxy_cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/proxy/proxy_cli.py b/litellm/proxy/proxy_cli.py index 8961dbb15..7698fa63c 100644 --- a/litellm/proxy/proxy_cli.py +++ b/litellm/proxy/proxy_cli.py @@ -6,6 +6,7 @@ load_dotenv() @click.option('--port', default=8000, help='Port to bind the server to.') @click.option('--api_base', default=None, help='API base URL.') @click.option('--model', required=True, help='The model name to pass to litellm expects') +@click.option('--deploy', required=True, help='Get a deployed proxy endpoint - api.litellm.ai') @click.option('--debug', is_flag=True, help='To debug the input') @click.option('--temperature', default=None, type=float, help='Set temperature for the model') @click.option('--max_tokens', default=None, help='Set max tokens for the model')