mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-09 22:31:41 +00:00
Merge badc281d6a into a2c814654e
This commit is contained in:
commit
c5f422f1e8
5 changed files with 51 additions and 0 deletions
|
|
@ -857,6 +857,7 @@ openai_compatible_providers: Final[list] = [
|
|||
"docker_model_runner",
|
||||
"ragflow",
|
||||
"pinstripes", # Pinstripes - JSON-configured provider
|
||||
"melious", # Melious - JSON-configured provider
|
||||
"darkbloom",
|
||||
"meta", # Meta Model API (Muse Spark) - JSON-configured provider
|
||||
"cognition",
|
||||
|
|
|
|||
|
|
@ -159,6 +159,21 @@
|
|||
"max_completion_tokens": "max_tokens"
|
||||
}
|
||||
},
|
||||
"melious": {
|
||||
"base_url": "https://api.melious.ai/v1",
|
||||
"api_key_env": "MELIOUS_API_KEY",
|
||||
"api_base_env": "MELIOUS_API_BASE",
|
||||
"param_mappings": {
|
||||
"max_completion_tokens": "max_tokens"
|
||||
},
|
||||
"supported_endpoints": [
|
||||
"/v1/chat/completions",
|
||||
"/v1/messages",
|
||||
"/v1/embeddings",
|
||||
"/v1/images/generations",
|
||||
"/v1/audio/transcriptions"
|
||||
]
|
||||
},
|
||||
"empiriolabs": {
|
||||
"base_url": "https://api.empiriolabs.ai/v1",
|
||||
"api_key_env": "EMPIRIOLABS_API_KEY",
|
||||
|
|
|
|||
|
|
@ -1412,6 +1412,23 @@
|
|||
"interactions": true
|
||||
}
|
||||
},
|
||||
"melious": {
|
||||
"display_name": "Melious (`melious`)",
|
||||
"url": "https://docs.litellm.ai/docs/providers/melious",
|
||||
"endpoints": {
|
||||
"chat_completions": true,
|
||||
"messages": true,
|
||||
"responses": false,
|
||||
"embeddings": true,
|
||||
"image_generations": true,
|
||||
"audio_transcriptions": true,
|
||||
"audio_speech": false,
|
||||
"moderations": false,
|
||||
"batches": false,
|
||||
"rerank": false,
|
||||
"a2a": false
|
||||
}
|
||||
},
|
||||
"mistral": {
|
||||
"display_name": "Mistral AI API (`mistral`)",
|
||||
"url": "https://docs.litellm.ai/docs/providers/mistral",
|
||||
|
|
|
|||
|
|
@ -3831,6 +3831,7 @@ class LlmProviders(str, Enum):
|
|||
XIAOMI_MIMO = "xiaomi_mimo"
|
||||
TENSORMESH = "tensormesh"
|
||||
LIBERTAI = "libertai"
|
||||
MELIOUS = "melious"
|
||||
PINSTRIPES = "pinstripes"
|
||||
COGNITION = "cognition"
|
||||
SCX_AI = "scx-ai"
|
||||
|
|
|
|||
|
|
@ -1527,6 +1527,23 @@
|
|||
"interactions": true
|
||||
}
|
||||
},
|
||||
"melious": {
|
||||
"display_name": "Melious (`melious`)",
|
||||
"url": "https://docs.litellm.ai/docs/providers/melious",
|
||||
"endpoints": {
|
||||
"chat_completions": true,
|
||||
"messages": true,
|
||||
"responses": false,
|
||||
"embeddings": true,
|
||||
"image_generations": true,
|
||||
"audio_transcriptions": true,
|
||||
"audio_speech": false,
|
||||
"moderations": false,
|
||||
"batches": false,
|
||||
"rerank": false,
|
||||
"a2a": false
|
||||
}
|
||||
},
|
||||
"mistral": {
|
||||
"display_name": "Mistral AI API (`mistral`)",
|
||||
"url": "https://docs.litellm.ai/docs/providers/mistral",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue