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;