mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-12 06:42:11 +02:00
feat: add MiniMax as LLM text completion provider
- Add MiniMax chat model provider using OpenAI-compatible API - Support MiniMax-M2.7 and MiniMax-M2.7-highspeed models - Temperature clamping to MiniMax valid range (0.0, 1.0] - Streaming support with token usage tracking - MINIMAX_API_KEY environment variable support - Add text-completion-minimax entry point - Add 15 unit tests and 3 integration tests - Update README with MiniMax in LLM APIs list
This commit is contained in:
parent
d30857b5c3
commit
50f24b8e2a
8 changed files with 960 additions and 4 deletions
|
|
@ -38,7 +38,7 @@ The platform:
|
|||
- [x] Deploy locally with Docker
|
||||
- [x] Deploy in cloud with Kubernetes
|
||||
- [x] Support for all major LLMs
|
||||
- [x] API support for Anthropic, Cohere, Gemini, Mistral, OpenAI, and others
|
||||
- [x] API support for Anthropic, Cohere, Gemini, MiniMax, Mistral, OpenAI, and others
|
||||
- [x] Model inferencing with vLLM, Ollama, TGI, LM Studio, and Llamafiles
|
||||
- [x] Developer friendly
|
||||
- [x] REST API [Docs](https://docs.trustgraph.ai/reference/apis/rest.html)
|
||||
|
|
@ -50,7 +50,7 @@ The platform:
|
|||
|
||||
How many times have you cloned a repo and opened the `.env.example` to see the dozens of API keys for 3rd party dependencies needed to make the services work? There are only 3 things in TrustGraph that might need an API key:
|
||||
|
||||
- 3rd party LLM services like Anthropic, Cohere, Gemini, Mistral, OpenAI, etc.
|
||||
- 3rd party LLM services like Anthropic, Cohere, Gemini, MiniMax, Mistral, OpenAI, etc.
|
||||
- 3rd party OCR like Mistral OCR
|
||||
- The API key *you set* for the TrustGraph API gateway
|
||||
|
||||
|
|
@ -161,6 +161,7 @@ TrustGraph provides component flexibility to optimize agent workflows.
|
|||
- Cohere<br>
|
||||
- Google AI Studio<br>
|
||||
- Google VertexAI<br>
|
||||
- MiniMax<br>
|
||||
- Mistral<br>
|
||||
- OpenAI<br>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue