fix: provider

This commit is contained in:
Prad Nukala
2026-07-17 23:14:08 -04:00
parent 181e936b29
commit 735229b150
4 changed files with 30 additions and 6 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"$schema": "https://charm.land/crush.json",
"providers": {
"groq": {
"type": "openai-compat",
"base_url": "https://api.groq.com/openai/v1",
"api_key": "$GROQ_API_KEY",
"models": [
{
"id": "openai/gpt-oss-120b",
"name": "GPT-OSS 120B on Groq",
"context_window": 131072,
"default_max_tokens": 8192
}
]
}
}
}