mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-08 00:18:12 +08:00
## 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>
32 lines
531 B
JSON
32 lines
531 B
JSON
{
|
|
"name": "OrcaRouter",
|
|
"url": {
|
|
"default": "https://api.orcarouter.ai"
|
|
},
|
|
"url_suffix": {
|
|
"chat": "v1/chat/completions",
|
|
"models": "v1/models",
|
|
"tts": "v1/audio/speech"
|
|
},
|
|
"class": "orcarouter",
|
|
"models": [
|
|
{
|
|
"name": "orcarouter/auto",
|
|
"content_length": 128000,
|
|
"max_output": 8192,
|
|
"model_types": [
|
|
"chat"
|
|
],
|
|
"tools": {
|
|
"support": true
|
|
}
|
|
},
|
|
{
|
|
"name": "openai/tts-1",
|
|
"model_types": [
|
|
"tts"
|
|
]
|
|
}
|
|
]
|
|
}
|