From c7e44325971d9311e7fe4a702b8879d75d88fe5a Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Mon, 12 Feb 2024 20:31:34 -0800 Subject: [PATCH] (feat) inc default gunicorn timeout --- 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 7f237132a..de21d0147 100644 --- a/litellm/proxy/proxy_cli.py +++ b/litellm/proxy/proxy_cli.py @@ -570,6 +570,7 @@ def run_server( "worker_class": "uvicorn.workers.UvicornWorker", "preload": True, # Add the preload flag, "accesslog": "-", # Log to stdout + "timeout": 600, # default to very high number, bedrock/anthropic.claude-v2:1 can take 30+ seconds for the 1st chunk to come in "access_log_format": '%(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s', }