mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-28 04:04:31 +00:00
ui - add azure ai studio models on ui
This commit is contained in:
parent
994b88118b
commit
14e060caf2
1 changed files with 3 additions and 0 deletions
|
@ -139,6 +139,7 @@ interface ProviderSettings {
|
|||
enum Providers {
|
||||
OpenAI = "OpenAI",
|
||||
Azure = "Azure",
|
||||
Azure_AI_Studio = "Azure AI Studio",
|
||||
Anthropic = "Anthropic",
|
||||
Google_AI_Studio = "Google AI Studio",
|
||||
Bedrock = "Amazon Bedrock",
|
||||
|
@ -151,6 +152,7 @@ enum Providers {
|
|||
const provider_map: Record<string, string> = {
|
||||
OpenAI: "openai",
|
||||
Azure: "azure",
|
||||
Azure_AI_Studio: "azure_ai",
|
||||
Anthropic: "anthropic",
|
||||
Google_AI_Studio: "gemini",
|
||||
Bedrock: "bedrock",
|
||||
|
@ -158,6 +160,7 @@ const provider_map: Record<string, string> = {
|
|||
Vertex_AI: "vertex_ai",
|
||||
Databricks: "databricks",
|
||||
Ollama: "ollama",
|
||||
|
||||
};
|
||||
|
||||
const retry_policy_map: Record<string, string> = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue