diff --git a/frontend/src/utils/verified-models.ts b/frontend/src/utils/verified-models.ts index 4733fa9bcdf0..0af4e9957783 100644 --- a/frontend/src/utils/verified-models.ts +++ b/frontend/src/utils/verified-models.ts @@ -2,10 +2,10 @@ export const VERIFIED_PROVIDERS = ["openai", "azure", "anthropic"]; export const VERIFIED_MODELS = [ "gpt-4o", - "claude-3-5-sonnet-20240620", "claude-3-5-sonnet-20241022", ]; + // LiteLLM does not return OpenAI models with the provider, so we list them here to set them ourselves for consistency // (e.g., they return `gpt-4o` instead of `openai/gpt-4o`) export const VERIFIED_OPENAI_MODELS = [ @@ -31,3 +31,4 @@ export const VERIFIED_ANTHROPIC_MODELS = [ "claude-instant-1", "claude-instant-1.2", ]; +