mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 09:41:11 +00:00
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
29 lines
669 B
JSON
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": {}
|
|
}
|
|
}
|