Files
openclaw/extensions/llm-task/openclaw.plugin.json
2026-05-17 11:45:18 +01:00

48 lines
944 B
JSON

{
"id": "llm-task",
"activation": {
"onStartup": true
},
"name": "LLM Task",
"description": "Generic JSON-only LLM tool for structured tasks callable from workflows.",
"configSchema": {
"type": "object",
"properties": {
"defaultProvider": {
"type": "string"
},
"defaultModel": {
"type": "string"
},
"defaultAuthProfileId": {
"type": "string"
},
"allowedModels": {
"type": "array",
"items": {
"type": "string"
},
"description": "Allowlist of provider/model keys like openai-codex/gpt-5.2."
},
"maxTokens": {
"type": "number"
},
"timeoutMs": {
"type": "number"
}
},
"additionalProperties": false
},
"version": "2026.5.17",
"contracts": {
"tools": [
"llm-task"
]
},
"toolMetadata": {
"llm-task": {
"optional": true
}
}
}