mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
[UI] Add RunwayML on Admin UI supported models/providers (#16606)
* add runway.png * add gen4_turbo
This commit is contained in:
parent
40a9d72be7
commit
21ba491656
3 changed files with 5 additions and 0 deletions
BIN
litellm/proxy/_experimental/out/assets/logos/runway.png
Normal file
BIN
litellm/proxy/_experimental/out/assets/logos/runway.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5 KiB |
BIN
ui/litellm-dashboard/public/assets/logos/runway.png
Normal file
BIN
ui/litellm-dashboard/public/assets/logos/runway.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5 KiB |
|
|
@ -31,6 +31,7 @@ export enum Providers {
|
|||
Openrouter = "Openrouter",
|
||||
Oracle = "Oracle Cloud Infrastructure (OCI)",
|
||||
Perplexity = "Perplexity",
|
||||
RunwayML = "RunwayML",
|
||||
Sambanova = "Sambanova",
|
||||
Snowflake = "Snowflake",
|
||||
TogetherAI = "TogetherAI",
|
||||
|
|
@ -65,6 +66,7 @@ export const provider_map: Record<string, string> = {
|
|||
Cerebras: "cerebras",
|
||||
Sambanova: "sambanova",
|
||||
Perplexity: "perplexity",
|
||||
RunwayML: "runwayml",
|
||||
TogetherAI: "together_ai",
|
||||
Openrouter: "openrouter",
|
||||
Oracle: "oci",
|
||||
|
|
@ -113,6 +115,7 @@ export const providerLogoMap: Record<string, string> = {
|
|||
[Providers.Openrouter]: `${asset_logos_folder}openrouter.svg`,
|
||||
[Providers.Oracle]: `${asset_logos_folder}oracle.svg`,
|
||||
[Providers.Perplexity]: `${asset_logos_folder}perplexity-ai.svg`,
|
||||
[Providers.RunwayML]: `${asset_logos_folder}runwayml.png`,
|
||||
[Providers.Sambanova]: `${asset_logos_folder}sambanova.svg`,
|
||||
[Providers.Snowflake]: `${asset_logos_folder}snowflake.svg`,
|
||||
[Providers.TogetherAI]: `${asset_logos_folder}togetherai.svg`,
|
||||
|
|
@ -188,6 +191,8 @@ export const getPlaceholder = (selectedProvider: string): string => {
|
|||
return "deepinfra/<any-model-on-deepinfra>";
|
||||
} else if (selectedProvider == Providers.FalAI) {
|
||||
return "fal_ai/fal-ai/flux-pro/v1.1-ultra";
|
||||
} else if (selectedProvider == Providers.RunwayML) {
|
||||
return "runwayml/gen4_turbo";
|
||||
} else {
|
||||
return "gpt-3.5-turbo";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue