Files
openclaw/extensions/groq/openclaw.plugin.json
Peter Steinberger be6ec97e11 refactor(providers): manifest-declared default models and unified onboarding presets (#113794)
* feat(model-catalog): declare provider default models

* refactor(providers): source onboarding defaults from manifests

* fix(cohere): remove unused model id export

* fix(chutes): preserve public default model id

* fix(model-catalog): accept provider default models
2026-07-25 12:54:53 -07:00

196 lines
4.8 KiB
JSON

{
"id": "groq",
"activation": {
"onStartup": false
},
"enabledByDefault": true,
"providers": ["groq"],
"providerEndpoints": [
{
"endpointClass": "groq-native",
"hosts": ["api.groq.com"]
}
],
"providerRequest": {
"providers": {
"groq": {
"family": "groq"
}
}
},
"setup": {
"providers": [
{
"id": "groq",
"authMethods": ["api-key"],
"envVars": ["GROQ_API_KEY"]
}
]
},
"providerAuthChoices": [
{
"provider": "groq",
"method": "api-key",
"choiceId": "groq-api-key",
"appGuidedSecret": true,
"choiceLabel": "Groq API key",
"choiceHint": "Fast OpenAI-compatible inference",
"groupId": "groq",
"groupLabel": "Groq",
"optionKey": "groqApiKey",
"cliFlag": "--groq-api-key",
"cliOption": "--groq-api-key <key>",
"cliDescription": "Groq API key"
}
],
"modelCatalog": {
"providers": {
"groq": {
"baseUrl": "https://api.groq.com/openai/v1",
"api": "openai-completions",
"defaultModel": "openai/gpt-oss-120b",
"models": [
{
"id": "groq/compound",
"name": "Compound",
"reasoning": false,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 8192,
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
}
},
{
"id": "groq/compound-mini",
"name": "Compound Mini",
"reasoning": false,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 8192,
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
}
},
{
"id": "llama-3.1-8b-instant",
"name": "Llama 3.1 8B Instant",
"status": "deprecated",
"replacedBy": "openai/gpt-oss-20b",
"reasoning": false,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 131072,
"cost": {
"input": 0.05,
"output": 0.08,
"cacheRead": 0,
"cacheWrite": 0
}
},
{
"id": "llama-3.3-70b-versatile",
"name": "Llama 3.3 70B Versatile",
"status": "deprecated",
"replacedBy": "openai/gpt-oss-120b",
"reasoning": false,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 32768,
"cost": {
"input": 0.59,
"output": 0.79,
"cacheRead": 0,
"cacheWrite": 0
}
},
{
"id": "openai/gpt-oss-120b",
"name": "GPT OSS 120B",
"reasoning": true,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 65536,
"cost": {
"input": 0.15,
"output": 0.6,
"cacheRead": 0.075,
"cacheWrite": 0
}
},
{
"id": "openai/gpt-oss-20b",
"name": "GPT OSS 20B",
"reasoning": true,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 65536,
"cost": {
"input": 0.075,
"output": 0.3,
"cacheRead": 0.0375,
"cacheWrite": 0
}
},
{
"id": "openai/gpt-oss-safeguard-20b",
"name": "Safety GPT OSS 20B",
"reasoning": true,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 65536,
"cost": {
"input": 0.075,
"output": 0.3,
"cacheRead": 0.037,
"cacheWrite": 0
}
},
{
"id": "qwen/qwen3.6-27b",
"name": "Qwen 3.6 27B",
"reasoning": true,
"input": ["text", "image"],
"contextWindow": 131072,
"maxTokens": 16384,
"cost": {
"input": 0.6,
"output": 3,
"cacheRead": 0,
"cacheWrite": 0
}
}
]
}
},
"discovery": {
"groq": "refreshable"
}
},
"contracts": {
"mediaUnderstandingProviders": ["groq"]
},
"mediaUnderstandingProviderMetadata": {
"groq": {
"capabilities": ["audio"],
"defaultModels": {
"audio": "whisper-large-v3-turbo"
},
"autoPriority": {
"audio": 20
}
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}