diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index 1aaab7d14f..129e70f1f9 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -110,7 +110,7 @@ import json import logging from typing import Union -app = FastAPI(docs_url="/", title="LiteLLM API") +app = FastAPI(docs_url="/", title="LiteLLM API", description="Proxy Server to call 100+ LLMs in the OpenAI format") router = APIRouter() origins = ["*"]