mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-08 08:28:02 +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>
71 lines
1.2 KiB
JSON
71 lines
1.2 KiB
JSON
{
|
|
"name": "GreenPT",
|
|
"url": {
|
|
"default": "https://api.greenpt.ai"
|
|
},
|
|
"url_suffix": {
|
|
"chat": "v1/chat/completions",
|
|
"models": "v1/models",
|
|
"embedding": "v1/embeddings",
|
|
"rerank": "v1/rerank",
|
|
"asr": "v1/listen"
|
|
},
|
|
"class": "greenpt",
|
|
"models": [
|
|
{
|
|
"name": "glm-5.2",
|
|
"content_length": 1000000,
|
|
"max_output": 128000,
|
|
"model_types": [
|
|
"chat"
|
|
],
|
|
"tools": {
|
|
"support": true
|
|
}
|
|
},
|
|
{
|
|
"name": "kimi-k2.7-code",
|
|
"content_length": 262144,
|
|
"max_output": 131072,
|
|
"model_types": [
|
|
"chat"
|
|
],
|
|
"tools": {
|
|
"support": true
|
|
}
|
|
},
|
|
{
|
|
"name": "green-embedding",
|
|
"max_tokens": 32768,
|
|
"max_dimension": 2560,
|
|
"dimensions": [
|
|
2560
|
|
],
|
|
"model_types": [
|
|
"embedding"
|
|
]
|
|
},
|
|
{
|
|
"name": "green-rerank",
|
|
"max_tokens": 32768,
|
|
"model_types": [
|
|
"rerank"
|
|
]
|
|
},
|
|
{
|
|
"name": "green-s",
|
|
"max_tokens": 0,
|
|
"model_types": [
|
|
"asr"
|
|
]
|
|
},
|
|
{
|
|
"name": "green-s-pro",
|
|
"max_tokens": 0,
|
|
"model_types": [
|
|
"asr"
|
|
]
|
|
}
|
|
]
|
|
}
|