Caricamento in corso...
Caricamento in corso...
Last synced: Today, 22:00
Technical reference for the OpenClaw framework. Real-time synchronization with the official documentation engine.
Use this file to discover all available pages before exploring further.
llm-taskThis is ideal for workflow engines like Lobster: you can add a single LLM step without writing custom OpenClaw code for each workflow.
json{ "plugins": { "entries": { "llm-task": { "enabled": true } } } }
optional: truejson{ "agents": { "list": [ { "id": "main", "tools": { "allow": ["llm-task"] } } ] } }
json{ "plugins": { "entries": { "llm-task": { "enabled": true, "config": { "defaultProvider": "openai-codex", "defaultModel": "gpt-5.5", "defaultAuthProfileId": "main", "allowedModels": ["openai/gpt-5.4"], "maxTokens": 800, "timeoutMs": 30000 } } } } }
allowedModelsprovider/modelpromptinputschemaprovidermodelthinkingauthProfileIdtemperaturemaxTokenstimeoutMsthinkinglowmediumReturns
details.jsonschemalobsteropenclaw.invoke --tool llm-task --action json --args-json '{ "prompt": "Given the input email, return intent and draft.", "thinking": "low", "input": { "subject": "Hello", "body": "Can you help?" }, "schema": { "type": "object", "properties": { "intent": { "type": "string" }, "draft": { "type": "string" } }, "required": ["intent", "draft"], "additionalProperties": false } }'
schema© 2024 TaskFlow Mirror
Powered by TaskFlow Sync Engine