feat(ui): Add Scaleway provider infos

This commit is contained in:
Guillaume RODRIGUEZ 2026-02-24 17:54:22 +01:00
parent 4652c73259
commit e57dbfdb56
No known key found for this signature in database
GPG key ID: 426ECA75CC58B398
2 changed files with 5 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -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";
}