mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-08 08:28:02 +08:00
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>
This commit is contained in:
@@ -14,7 +14,8 @@
|
||||
"models": [
|
||||
{
|
||||
"name": "deepseek/deepseek-v4-flash",
|
||||
"max_output": 1048576,
|
||||
"content_length": 1048576,
|
||||
"max_output": 393216,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -24,7 +25,8 @@
|
||||
},
|
||||
{
|
||||
"name": "deepseek/deepseek-v4-pro",
|
||||
"max_output": 1048576,
|
||||
"content_length": 1048576,
|
||||
"max_output": 393216,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -34,7 +36,8 @@
|
||||
},
|
||||
{
|
||||
"name": "deepseek/deepseek-r1/community",
|
||||
"max_output": 64000,
|
||||
"content_length": 131072,
|
||||
"max_output": 32768,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -44,7 +47,8 @@
|
||||
},
|
||||
{
|
||||
"name": "deepseek/deepseek-v3/community",
|
||||
"max_output": 64000,
|
||||
"content_length": 131072,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -54,7 +58,8 @@
|
||||
},
|
||||
{
|
||||
"name": "deepseek/deepseek-r1",
|
||||
"max_output": 64000,
|
||||
"content_length": 131072,
|
||||
"max_output": 32768,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -64,7 +69,8 @@
|
||||
},
|
||||
{
|
||||
"name": "deepseek/deepseek-v3",
|
||||
"max_output": 64000,
|
||||
"content_length": 131072,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -74,7 +80,8 @@
|
||||
},
|
||||
{
|
||||
"name": "deepseek/deepseek-r1-distill-llama-70b",
|
||||
"max_output": 32000,
|
||||
"content_length": 131072,
|
||||
"max_output": 32768,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -84,7 +91,8 @@
|
||||
},
|
||||
{
|
||||
"name": "deepseek/deepseek-r1-distill-qwen-32b",
|
||||
"max_output": 64000,
|
||||
"content_length": 131072,
|
||||
"max_output": 32768,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -94,7 +102,8 @@
|
||||
},
|
||||
{
|
||||
"name": "deepseek/deepseek-r1-distill-qwen-14b",
|
||||
"max_output": 64000,
|
||||
"content_length": 131072,
|
||||
"max_output": 32768,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -104,7 +113,8 @@
|
||||
},
|
||||
{
|
||||
"name": "deepseek/deepseek-r1-distill-llama-8b",
|
||||
"max_output": 32000,
|
||||
"content_length": 131072,
|
||||
"max_output": 32768,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -114,7 +124,8 @@
|
||||
},
|
||||
{
|
||||
"name": "qwen/qwen-2.5-72b-instruct",
|
||||
"max_output": 32768,
|
||||
"content_length": 131072,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -124,7 +135,8 @@
|
||||
},
|
||||
{
|
||||
"name": "qwen/qwen-2-vl-72b-instruct",
|
||||
"max_output": 32768,
|
||||
"content_length": 32768,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -134,7 +146,8 @@
|
||||
},
|
||||
{
|
||||
"name": "meta-llama/llama-3.2-3b-instruct",
|
||||
"max_output": 32768,
|
||||
"content_length": 131072,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -144,7 +157,8 @@
|
||||
},
|
||||
{
|
||||
"name": "qwen/qwen2.5-32b-instruct",
|
||||
"max_output": 32000,
|
||||
"content_length": 131072,
|
||||
"max_output": 32768,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -154,7 +168,8 @@
|
||||
},
|
||||
{
|
||||
"name": "baichuan/baichuan2-13b-chat",
|
||||
"max_output": 14336,
|
||||
"content_length": 196608,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -164,7 +179,8 @@
|
||||
},
|
||||
{
|
||||
"name": "meta-llama/llama-3.1-70b-instruct",
|
||||
"max_output": 32768,
|
||||
"content_length": 131072,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -174,7 +190,8 @@
|
||||
},
|
||||
{
|
||||
"name": "meta-llama/llama-3.1-8b-instruct",
|
||||
"max_output": 32768,
|
||||
"content_length": 131072,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -184,7 +201,8 @@
|
||||
},
|
||||
{
|
||||
"name": "01-ai/yi-1.5-34b-chat",
|
||||
"max_output": 16384,
|
||||
"content_length": 16384,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -194,7 +212,8 @@
|
||||
},
|
||||
{
|
||||
"name": "01-ai/yi-1.5-9b-chat",
|
||||
"max_output": 16384,
|
||||
"content_length": 16384,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -204,7 +223,8 @@
|
||||
},
|
||||
{
|
||||
"name": "thudm/glm-4-9b-chat",
|
||||
"max_output": 32768,
|
||||
"content_length": 128000,
|
||||
"max_output": 16384,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
@@ -214,7 +234,8 @@
|
||||
},
|
||||
{
|
||||
"name": "qwen/qwen-2-7b-instruct",
|
||||
"max_output": 32768,
|
||||
"content_length": 131072,
|
||||
"max_output": 8192,
|
||||
"model_types": [
|
||||
"chat"
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user