From 5a8154335fa5c12e1624c6ee874f41e6829c4264 Mon Sep 17 00:00:00 2001 From: yuneng-jiang Date: Tue, 2 Dec 2025 15:00:52 -0800 Subject: [PATCH] Changed default provider and made optional status of Vertex API Base more obvious --- litellm/proxy/public_endpoints/provider_create_fields.json | 2 +- .../(dashboard)/models-and-endpoints/ModelsAndEndpointsView.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/public_endpoints/provider_create_fields.json b/litellm/proxy/public_endpoints/provider_create_fields.json index c7f88c9e826..a23775f122d 100644 --- a/litellm/proxy/public_endpoints/provider_create_fields.json +++ b/litellm/proxy/public_endpoints/provider_create_fields.json @@ -2609,7 +2609,7 @@ }, { "key": "api_base", - "label": "API Base", + "label": "API Base (Optional)", "placeholder": null, "tooltip": "Supports custom API base for Google Private API endpoints.", "required": false, diff --git a/ui/litellm-dashboard/src/app/(dashboard)/models-and-endpoints/ModelsAndEndpointsView.tsx b/ui/litellm-dashboard/src/app/(dashboard)/models-and-endpoints/ModelsAndEndpointsView.tsx index 4f33ba6585d..4d400ba680e 100644 --- a/ui/litellm-dashboard/src/app/(dashboard)/models-and-endpoints/ModelsAndEndpointsView.tsx +++ b/ui/litellm-dashboard/src/app/(dashboard)/models-and-endpoints/ModelsAndEndpointsView.tsx @@ -100,7 +100,7 @@ const ModelsAndEndpointsView: React.FC = ({ const [providerModels, setProviderModels] = useState>([]); // Explicitly typing providerModels as a string array const [providerSettings, setProviderSettings] = useState([]); - const [selectedProvider, setSelectedProvider] = useState(Providers.OpenAI); + const [selectedProvider, setSelectedProvider] = useState(Providers.Anthropic); const [editModalVisible, setEditModalVisible] = useState(false); const [selectedModel, setSelectedModel] = useState(null);