From 84f77bfaf8739418a7c56a63d38bfed31adcd7d0 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 20 Dec 2023 06:27:26 +0530 Subject: [PATCH] (docs) swagger docs add description --- litellm/proxy/proxy_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = ["*"]