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

108 lines
2.0 KiB
JSON

{
"name": "NovitaAI",
"url": {
"default": "https://api.novita.ai"
},
"url_suffix": {
"chat": "openai/v1/chat/completions",
"models": "openai/v1/models",
"embedding": "openai/v1/embeddings",
"balance": "openapi/v1/billing/balance/detail",
"rerank": "openai/v1/rerank"
},
"class": "novita",
"models": [
{
"name": "deepseek/deepseek-v4-pro",
"content_length": 1048576,
"max_output": 393216,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "meta-llama/llama-3.3-70b-instruct",
"content_length": 131072,
"max_output": 120000,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "qwen/qwen3-30b-a3b-fp8",
"content_length": 256000,
"max_output": 128000,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "qwen/qwen3-235b-a22b-fp8",
"content_length": 40960,
"max_output": 20000,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "moonshotai/kimi-k2-instruct",
"content_length": 262144,
"max_output": 131072,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "google/gemma-3-27b-it",
"content_length": 98304,
"max_output": 16384,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "mistralai/mistral-nemo",
"content_length": 60288,
"max_output": 16000,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "baai/bge-m3",
"max_tokens": 8192,
"model_types": [
"embedding"
]
},
{
"name": "baai/bge-reranker-v2-m3",
"max_tokens": 1024,
"model_types": [
"rerank"
]
}
]
}