mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
feat: add FuturMix provider
Add FuturMix (https://futurmix.ai) as an OpenAI-compatible provider: - providers.json: base_url, api_key_env (FUTURMIX_API_KEY), api_base_env, max_completion_tokens->max_tokens mapping - provider_endpoints_support.json: endpoint support matrix (chat/completions, messages, responses, embeddings, image_generations)
This commit is contained in:
parent
24123269cc
commit
4dd2279a8e
2 changed files with 26 additions and 0 deletions
|
|
@ -80,6 +80,14 @@
|
|||
"base_url": "https://api.gmi-serving.com/v1",
|
||||
"api_key_env": "GMI_API_KEY"
|
||||
},
|
||||
"futurmix": {
|
||||
"base_url": "https://futurmix.ai/v1",
|
||||
"api_key_env": "FUTURMIX_API_KEY",
|
||||
"api_base_env": "FUTURMIX_API_BASE",
|
||||
"param_mappings": {
|
||||
"max_completion_tokens": "max_tokens"
|
||||
}
|
||||
},
|
||||
"sarvam": {
|
||||
"base_url": "https://api.sarvam.ai/v1",
|
||||
"api_key_env": "SARVAM_API_KEY",
|
||||
|
|
|
|||
|
|
@ -1141,6 +1141,24 @@
|
|||
"interactions": true
|
||||
}
|
||||
},
|
||||
"futurmix": {
|
||||
"display_name": "FuturMix (`futurmix`)",
|
||||
"url": "https://futurmix.ai",
|
||||
"endpoints": {
|
||||
"chat_completions": true,
|
||||
"messages": true,
|
||||
"responses": true,
|
||||
"embeddings": true,
|
||||
"image_generations": true,
|
||||
"audio_transcriptions": false,
|
||||
"audio_speech": false,
|
||||
"moderations": false,
|
||||
"batches": false,
|
||||
"rerank": false,
|
||||
"a2a": false,
|
||||
"interactions": false
|
||||
}
|
||||
},
|
||||
"vertex_ai": {
|
||||
"display_name": "Google - Vertex AI (`vertex_ai`)",
|
||||
"url": "https://docs.litellm.ai/docs/providers/vertex",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue