From 8cc5f0194da771f72fc6951b9099dff7f0b794c2 Mon Sep 17 00:00:00 2001 From: Ryan Crabbe Date: Mon, 2 Mar 2026 12:08:10 -0800 Subject: [PATCH] Add OpenAI Text-Compatible to providers requiring prefix --- ui/litellm-dashboard/src/components/provider_info_helpers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/src/components/provider_info_helpers.tsx b/ui/litellm-dashboard/src/components/provider_info_helpers.tsx index 29d51fcb9e5..1c016ec2924 100644 --- a/ui/litellm-dashboard/src/components/provider_info_helpers.tsx +++ b/ui/litellm-dashboard/src/components/provider_info_helpers.tsx @@ -368,7 +368,7 @@ export const getPlaceholder = (selectedProvider: string): string => { } }; -const providersRequiringPrefix = new Set(["Azure", "OpenAI_Compatible"]); +const providersRequiringPrefix = new Set(["Azure", "OpenAI_Compatible", "OpenAI_Text_Compatible"]); export const prefixWithProvider = (provider: string, modelName: string): string => { if (!providersRequiringPrefix.has(provider)) return modelName;