Files
ragflow/conf/models/mistral.json
jay77721 47ecc2a231 feat: populate content_length and max_output from official docs (#17836)
## Summary

- Verify and populate `content_length` (context window) and `max_output`
(max generation tokens) for all **478 chat/vision models** across **47
provider configs**
- Data sourced from **official API documentation** via 12 parallel
agents + targeted web verification
- Update Go test assertions to match verified values

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-08-05 15:22:57 +08:00

188 lines
3.4 KiB
JSON

{
"name": "Mistral",
"url": {
"default": "https://api.mistral.ai"
},
"url_suffix": {
"chat": "v1/chat/completions",
"models": "v1/models",
"embedding": "v1/embeddings",
"asr": "v1/audio/transcriptions",
"tts": "v1/audio/speech",
"ocr": "v1/ocr"
},
"class": "mistral",
"models": [
{
"name": "mistral-large-latest",
"content_length": 262144,
"max_output": 262144,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "voxtral-mini-tts-2603",
"model_types": [
"tts"
]
},
{
"name": "voxtral-mini-transcribe-realtime-2602",
"model_types": [
"asr"
]
},
{
"name": "mistral-medium-latest",
"content_length": 262144,
"max_output": 262144,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "mistral-small-latest",
"content_length": 262144,
"max_output": 262144,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "ministral-8b-latest",
"content_length": 262144,
"max_output": 262144,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "ministral-3b-latest",
"content_length": 262144,
"max_output": 262144,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "pixtral-large-latest",
"content_length": 131072,
"max_output": 131072,
"model_types": [
"chat",
"vision"
],
"tools": {
"support": true
}
},
{
"name": "codestral-latest",
"content_length": 131072,
"max_output": 131072,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "open-mistral-nemo",
"content_length": 131072,
"max_output": 131072,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "open-mistral-7b",
"content_length": 32768,
"max_output": 32768,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "open-mixtral-8x7b",
"content_length": 32768,
"max_output": 32768,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "open-mixtral-8x22b",
"content_length": 65536,
"max_output": 65536,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "magistral-medium-latest",
"content_length": 131072,
"max_output": 131072,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "magistral-small-latest",
"content_length": 131072,
"max_output": 131072,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "mistral-embed",
"max_tokens": 8192,
"model_types": [
"embedding"
]
},
{
"name": "mistral-ocr-2512",
"max_tokens": 8192,
"model_types": [
"ocr"
]
}
]
}