From 99a0fce772e6beaf94f25ce2d30f9fae36b71c4d Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 1 Feb 2024 16:02:57 -0800 Subject: [PATCH] (fix) proxy - show Admin Panel on swagger --- litellm/proxy/proxy_server.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index ff35ef2e39..6e5dc15c01 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -116,7 +116,9 @@ import logging from typing import Union ui_link = f"/ui/" -ui_message = f"👉 [LiteLLM Admin Panel on /ui]({ui_link}). Create, Edit Keys with SSO" +ui_message = ( + f"👉 [```LiteLLM Admin Panel on /ui```]({ui_link}). Create, Edit Keys with SSO" +) app = FastAPI( docs_url="/", title="LiteLLM API",