Files
openclaw/extensions/featherless/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

84 lines
2.1 KiB
JSON

{
"id": "featherless",
"name": "Featherless AI",
"description": "OpenClaw Featherless AI provider plugin.",
"activation": {
"onStartup": false
},
"enabledByDefault": true,
"providers": ["featherless"],
"providerRequest": {
"providers": {
"featherless": {
"family": "featherless"
}
}
},
"setup": {
"providers": [
{
"id": "featherless",
"envVars": ["FEATHERLESS_API_KEY"]
}
]
},
"providerAuthChoices": [
{
"provider": "featherless",
"method": "api-key",
"choiceId": "featherless-api-key",
"appGuidedSecret": true,
"choiceLabel": "Featherless AI API key",
"choiceHint": "OpenAI-compatible access to open models",
"groupId": "featherless",
"groupLabel": "Featherless AI",
"groupHint": "OpenAI-compatible access to open models",
"optionKey": "featherlessApiKey",
"cliFlag": "--featherless-api-key",
"cliOption": "--featherless-api-key <key>",
"cliDescription": "Featherless AI API key"
}
],
"modelCatalog": {
"providers": {
"featherless": {
"baseUrl": "https://api.featherless.ai/v1",
"api": "openai-completions",
"models": [
{
"id": "Qwen/Qwen3-32B",
"name": "Qwen3 32B",
"reasoning": true,
"input": ["text"],
"contextWindow": 32768,
"maxTokens": 4096,
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"compat": {
"supportsStore": false,
"supportsDeveloperRole": false,
"supportsReasoningEffort": false,
"supportsUsageInStreaming": false,
"maxTokensField": "max_tokens",
"thinkingFormat": "qwen-chat-template",
"supportsStrictMode": false
}
}
]
}
},
"discovery": {
"featherless": "refreshable"
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}