diff --git a/ui/litellm-dashboard/src/app/chat/api-keys/page.tsx b/ui/litellm-dashboard/src/app/chat/api-keys/page.tsx new file mode 100644 index 00000000000..ffba47479a1 --- /dev/null +++ b/ui/litellm-dashboard/src/app/chat/api-keys/page.tsx @@ -0,0 +1,14 @@ +"use client"; + +import { useChatShell } from "@/contexts/ChatShellContext"; +import KeysPanel from "@/components/chat/KeysPanel"; + +export default function ApiKeysPage() { + const { accessToken, userId, premiumUser } = useChatShell(); + + return ( +
+ Send a message to see responses side-by-side +
+ ) : ( ++ Chat with 100+ LLMs + MCP tools; authenticate once, use them here.{" "} + +
+ )} + +{children}
+ ), + code: ({ className, children }) => { + const isBlock = /language-(\w+)/.exec(className || ""); + if (isBlock) { + return ( +
+ {children}
+
+ );
+ }
+ return (
+
+ {children}
+
+ );
+ },
+ }}
+ >
+ {responseText}
+