File size: 653 Bytes
87fc763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "id": "llm-task",
  "name": "LLM Task",
  "description": "Generic JSON-only LLM tool for structured tasks callable from workflows.",
  "configSchema": {
    "type": "object",
    "additionalProperties": false,
    "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" }
    }
  }
}