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

117 lines
2.0 KiB
JSON

{
"name": "Groq",
"url": {
"default": "https://api.groq.com/openai/v1"
},
"url_suffix": {
"chat": "chat/completions",
"models": "models",
"asr": "audio/transcriptions",
"tts": "audio/speech"
},
"class": "groq",
"models": [
{
"name": "llama-3.1-8b-instant",
"content_length": 131072,
"max_output": 131072,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "llama-3.3-70b-versatile",
"content_length": 131072,
"max_output": 32768,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "openai/gpt-oss-120b",
"content_length": 131072,
"max_output": 131072,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "openai/gpt-oss-20b",
"content_length": 131072,
"max_output": 131072,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "groq/compound",
"content_length": 131072,
"max_output": 8192,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "groq/compound-mini",
"content_length": 131072,
"max_output": 8192,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "openai/gpt-oss-20b",
"content_length": 131072,
"max_output": 131072,
"model_types": [
"chat"
],
"tools": {
"support": true
}
},
{
"name": "canopylabs/orpheus-v1-english",
"model_types": [
"tts"
]
},
{
"name": "canopylabs/orpheus-arabic-saudi",
"model_types": [
"tts"
]
},
{
"name": "whisper-large-v3-turbo",
"model_types": [
"asr"
]
},
{
"name": "whisper-large-v3",
"model_types": [
"asr"
]
}
]
}