Files
openclaw/extensions/litellm/openclaw.plugin.json
Jason (Json) 55cf9523e0 feat: discover models from live provider catalogs (#112412)
* feat: discover models from live provider catalogs

* fix(provider-catalog): satisfy current catalog contracts

* fix(deps): update fast-uri past new advisory

* fix(deps): refresh fast-uri shrinkwraps

* fix(openrouter): satisfy provider catalog lint

* fix(agents): preserve refreshable catalog metadata

* test(agents): keep catalog fallback proof within lint budget

* fix(provider-catalog): honor live model contracts

* fix(minimax): type discovery headers explicitly

* docs(plugin-sdk): define live model discovery contract
2026-07-21 19:29:57 -06:00

47 lines
1.0 KiB
JSON

{
"id": "litellm",
"activation": {
"onStartup": false
},
"enabledByDefault": true,
"providers": ["litellm"],
"modelCatalog": {
"discovery": {
"litellm": "runtime"
}
},
"setup": {
"providers": [
{
"id": "litellm",
"envVars": ["LITELLM_API_KEY"]
}
]
},
"providerAuthChoices": [
{
"provider": "litellm",
"method": "api-key",
"choiceId": "litellm-api-key",
"appGuidedSecret": true,
"choiceLabel": "LiteLLM API key",
"choiceHint": "Unified gateway for 100+ LLM providers",
"groupId": "litellm",
"groupLabel": "LiteLLM",
"groupHint": "Unified LLM gateway (100+ providers)",
"optionKey": "litellmApiKey",
"cliFlag": "--litellm-api-key",
"cliOption": "--litellm-api-key <key>",
"cliDescription": "LiteLLM API key"
}
],
"contracts": {
"imageGenerationProviders": ["litellm"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}