Files
ragflow/conf/models/upstage.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

73 lines
1.3 KiB
JSON

{
"name": "Upstage",
"url": {
"default": "https://api.upstage.ai/v1"
},
"url_suffix": {
"chat": "chat/completions",
"models": "models",
"embedding": "embeddings"
},
"class": "solar",
"models": [
{
"name": "solar-pro3",
"content_length": 128000,
"max_output": 4096,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "solar-pro2",
"content_length": 32768,
"max_output": 4096,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "solar-pro",
"content_length": 32768,
"max_output": 4096,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "solar-mini",
"content_length": 4096,
"max_output": 4096,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "solar-embedding-1-large-query",
"max_tokens": 2000,
"model_types": [
"embedding"
]
},
{
"name": "solar-embedding-1-large-passage",
"max_tokens": 2000,
"model_types": [
"embedding"
]
}
]
}