From 0951af499bfdda38989de1132bf76fbdf4cd3922 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Fri, 14 Mar 2025 18:34:22 -0700 Subject: [PATCH] testConnectionRequest --- ui/litellm-dashboard/src/components/networking.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/src/components/networking.tsx b/ui/litellm-dashboard/src/components/networking.tsx index d4de7aad82..81b9bb93e0 100644 --- a/ui/litellm-dashboard/src/components/networking.tsx +++ b/ui/litellm-dashboard/src/components/networking.tsx @@ -2290,7 +2290,11 @@ export const testConnectionRequest = async ( 'Content-Type': 'application/json', [globalLitellmHeaderName]: `Bearer ${accessToken}` }, - body: JSON.stringify(requestBody) + body: JSON.stringify( + { + litellm_params: requestBody + } + ) }); // Check for non-JSON responses first