mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 14:51:08 +00:00
* fix: add enabledByDefault to groq and deepgram media plugin manifests The groq and deepgram plugin manifests were missing the enabledByDefault: true flag. Without this flag, both plugins are treated as bundled-but-disabled-by-default, so resolveRuntimePluginRegistry loads without them. When buildProviderRegistry later needs to resolve audio providers, the active registry is used first (short-circuits the compat path in resolvePluginCapabilityProviders), leaving groq and deepgram absent from the registry. This caused 'Media provider not available: groq' errors when users configured tools.media.audio.models with groq or deepgram, even with GROQ_API_KEY / DEEPGRAM_API_KEY set correctly. The fix mirrors the pattern used by other audio/media-only providers such as mistral, which already has enabledByDefault: true. Fixes #59875 * fix: enable groq and deepgram bundled media providers by default (#59982) (thanks @yxjsxy) --------- Co-authored-by: Ayaan Zaidi <hi@obviy.us>
13 lines
224 B
JSON
13 lines
224 B
JSON
{
|
|
"id": "deepgram",
|
|
"enabledByDefault": true,
|
|
"contracts": {
|
|
"mediaUnderstandingProviders": ["deepgram"]
|
|
},
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {}
|
|
}
|
|
}
|