mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-09 21:04:49 +08:00
### What problem does this PR solve? 1. Add new provider minimax 2. Add new command: CHECK INSTANCE 'instance_name' FROM 'provider_name'; ``` RAGFlow(user)> check instance 'test' from 'minimax'; SUCCESS ``` ### Type of change - [x] New Feature (non-breaking change which adds functionality) Signed-off-by: Jin Hai <haijin.chn@gmail.com>
41 lines
747 B
JSON
41 lines
747 B
JSON
{
|
|
"name": "xAI",
|
|
"url": {
|
|
"default": "https://api.x.ai/v1"
|
|
},
|
|
"url_suffix": {
|
|
"chat": "chat/completions"
|
|
},
|
|
"models": [
|
|
{
|
|
"name": "grok-4",
|
|
"max_tokens": 256000,
|
|
"model_types": ["chat"]
|
|
},
|
|
{
|
|
"name": "grok-3",
|
|
"max_tokens": 131072,
|
|
"model_types": ["chat"]
|
|
},
|
|
{
|
|
"name": "grok-3-fast",
|
|
"max_tokens": 131072,
|
|
"model_types": ["chat"]
|
|
},
|
|
{
|
|
"name": "grok-3-mini",
|
|
"max_tokens": 131072,
|
|
"model_types": ["chat"]
|
|
},
|
|
{
|
|
"name": "grok-3-mini-mini-fast",
|
|
"max_tokens": 131072,
|
|
"model_types": ["chat"]
|
|
},
|
|
{
|
|
"name": "grok-2-vision",
|
|
"max_tokens": 32768,
|
|
"model_types": ["vision"]
|
|
}
|
|
]
|
|
} |