Files
openclaw/extensions/arcee/openclaw.plugin.json
arthurbr11 5ac2f58c57 feat: add Arcee AI provider plugin
Add a bundled Arcee AI provider plugin with ARCEEAI_API_KEY onboarding,
Trinity model catalog (mini, large-preview, large-thinking), and
OpenAI-compatible API support.

- Trinity Large Thinking: 256K context, reasoning enabled
- Trinity Large Preview: 128K context, general-purpose
- Trinity Mini 26B: 128K context, fast and cost-efficient
2026-04-06 19:53:27 +01:00

29 lines
669 B
JSON

{
"id": "arcee",
"enabledByDefault": true,
"providers": ["arcee"],
"providerAuthEnvVars": {
"arcee": ["ARCEEAI_API_KEY"]
},
"providerAuthChoices": [
{
"provider": "arcee",
"method": "api-key",
"choiceId": "arceeai-api-key",
"choiceLabel": "Arcee AI API key",
"groupId": "arcee",
"groupLabel": "Arcee AI",
"groupHint": "API key",
"optionKey": "arceeaiApiKey",
"cliFlag": "--arceeai-api-key",
"cliOption": "--arceeai-api-key <key>",
"cliDescription": "Arcee AI API key"
}
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}