forked from phoenix/litellm-mirror
improve formatiing of providers
This commit is contained in:
parent
c8d2a5ed5e
commit
e9f284c65c
2 changed files with 22 additions and 21 deletions
|
@ -31,6 +31,7 @@ LiteLLM allows you to add a new model using the liteLLM Dashboard
|
||||||
Go to `admin.litellm.ai/<your_email>`
|
Go to `admin.litellm.ai/<your_email>`
|
||||||
Navigate to the 'Add New LLM' Section
|
Navigate to the 'Add New LLM' Section
|
||||||
<Image img={require('../../img/add_model.png')} alt="Dashboard" />
|
<Image img={require('../../img/add_model.png')} alt="Dashboard" />
|
||||||
|
|
||||||
- Select Provider
|
- Select Provider
|
||||||
- Select your LLM
|
- Select your LLM
|
||||||
- Add your LLM Key
|
- Add your LLM Key
|
||||||
|
|
|
@ -229,30 +229,30 @@ model_list = (
|
||||||
)
|
)
|
||||||
|
|
||||||
provider_list = [
|
provider_list = [
|
||||||
"openai",
|
"OpenAI",
|
||||||
"azure",
|
"Azure",
|
||||||
"cohere",
|
"Cohere",
|
||||||
"anthropic",
|
"Anthropic",
|
||||||
"replicate",
|
"Replicate",
|
||||||
"huggingface",
|
"Huggingface",
|
||||||
"together_ai",
|
"Together_ai",
|
||||||
"openrouter",
|
"Openrouter",
|
||||||
"vertex_ai",
|
"Vertex_ai",
|
||||||
"ai21",
|
"AI21",
|
||||||
"baseten",
|
"Baseten",
|
||||||
]
|
]
|
||||||
|
|
||||||
models_by_provider = {
|
models_by_provider = {
|
||||||
"openai": open_ai_chat_completion_models + open_ai_text_completion_models,
|
"OpenAI": open_ai_chat_completion_models + open_ai_text_completion_models,
|
||||||
"cohere": cohere_models,
|
"Cohere": cohere_models,
|
||||||
"anthropic": anthropic_models,
|
"Anthropic": anthropic_models,
|
||||||
"replicate": replicate_models,
|
"Replicate": replicate_models,
|
||||||
"huggingface": huggingface_models,
|
"Huggingface": huggingface_models,
|
||||||
"together_ai": together_ai_models,
|
"Together_ai": together_ai_models,
|
||||||
"baseten": baseten_models,
|
"Baseten": baseten_models,
|
||||||
"openrouter": openrouter_models,
|
"Openrouter": openrouter_models,
|
||||||
"vertex_ai": vertex_chat_models + vertex_text_models,
|
"Vertex_ai": vertex_chat_models + vertex_text_models,
|
||||||
"ai21": ai21_models,
|
"AI21": ai21_models,
|
||||||
}
|
}
|
||||||
|
|
||||||
####### EMBEDDING MODELS ###################
|
####### EMBEDDING MODELS ###################
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue