mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +00:00
feat(ui): Add Scaleway provider infos
This commit is contained in:
parent
4652c73259
commit
e57dbfdb56
2 changed files with 5 additions and 0 deletions
BIN
ui/litellm-dashboard/public/assets/logos/scaleway.png
Normal file
BIN
ui/litellm-dashboard/public/assets/logos/scaleway.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
|
|
@ -35,6 +35,7 @@ export enum Providers {
|
|||
Perplexity = "Perplexity",
|
||||
RunwayML = "RunwayML",
|
||||
Sambanova = "Sambanova",
|
||||
Scaleway = "Scaleway",
|
||||
Snowflake = "Snowflake",
|
||||
TogetherAI = "TogetherAI",
|
||||
Triton = "Triton",
|
||||
|
|
@ -84,6 +85,7 @@ export const provider_map: Record<string, string> = {
|
|||
ElevenLabs: "elevenlabs",
|
||||
FalAI: "fal_ai",
|
||||
SageMaker: "sagemaker_chat",
|
||||
Scaleway: "scaleway",
|
||||
Voyage: "voyage",
|
||||
JinaAI: "jina_ai",
|
||||
VolcEngine: "volcengine",
|
||||
|
|
@ -127,6 +129,7 @@ export const providerLogoMap: Record<string, string> = {
|
|||
[Providers.Perplexity]: `${asset_logos_folder}perplexity-ai.svg`,
|
||||
[Providers.RunwayML]: `${asset_logos_folder}runwayml.png`,
|
||||
[Providers.Sambanova]: `${asset_logos_folder}sambanova.svg`,
|
||||
[Providers.Scaleway]: `${asset_logos_folder}scaleway.png`,
|
||||
[Providers.Snowflake]: `${asset_logos_folder}snowflake.svg`,
|
||||
[Providers.TogetherAI]: `${asset_logos_folder}togetherai.svg`,
|
||||
[Providers.Vertex_AI]: `${asset_logos_folder}google.svg`,
|
||||
|
|
@ -206,6 +209,8 @@ export const getPlaceholder = (selectedProvider: string): string => {
|
|||
return "runwayml/gen4_turbo";
|
||||
} else if (selectedProvider === Providers.Watsonx) {
|
||||
return "watsonx/ibm/granite-3-3-8b-instruct";
|
||||
} else if (selectedProvider === Providers.Scaleway) {
|
||||
return "scaleway/qwen3-235b-a22b-instruct-2507";
|
||||
} else {
|
||||
return "gpt-3.5-turbo";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue