Spaces:
Running
Running
Capitalized Provider Name
Browse files
app.py
CHANGED
|
@@ -82,13 +82,13 @@ def parse_model_string(model):
|
|
| 82 |
# Known provider name mappings
|
| 83 |
# Update these based on what's configured in Onyx Cloud admin panel
|
| 84 |
PROVIDER_ALIASES = {
|
| 85 |
-
"openai": "
|
| 86 |
-
"anthropic": "
|
| 87 |
-
"google": "
|
| 88 |
-
"azure": "
|
| 89 |
-
"bedrock": "
|
| 90 |
-
"cohere": "
|
| 91 |
-
"mistral": "
|
| 92 |
# Add more aliases as needed
|
| 93 |
}
|
| 94 |
|
|
|
|
| 82 |
# Known provider name mappings
|
| 83 |
# Update these based on what's configured in Onyx Cloud admin panel
|
| 84 |
PROVIDER_ALIASES = {
|
| 85 |
+
"openai": "OpenAI", # Capitalized generally preferred
|
| 86 |
+
"anthropic": "Anthropic", # Capitalized
|
| 87 |
+
"google": "Google",
|
| 88 |
+
"azure": "Azure",
|
| 89 |
+
"bedrock": "Bedrock",
|
| 90 |
+
"cohere": "Cohere",
|
| 91 |
+
"mistral": "Mistral",
|
| 92 |
# Add more aliases as needed
|
| 93 |
}
|
| 94 |
|