Delegate a task to the DeepSeek model
delegate_taskFor quick answers without tools or file access, send your task to the raw DeepSeek model. Since it is stateless, provide full context in the task or system prompt.
Instructions
Send a task or question to the raw DeepSeek model (deepseek-v4-pro) and return its answer. Fast and cheap, but has NO tools and cannot touch files. For work that needs a shell, file edits, or sub-agents, use run_agent_task instead. Stateless: put all context into the task (or the optional system prompt).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | The task or question to delegate. Be specific about the goal, context, and expected output. | |
| model | No | Which DeepSeek model answers the task. | deepseek-v4-pro |
| system | No | Optional system instruction: persona, constraints, or output format for this call. | |
| max_tokens | No | Maximum output tokens for the answer (default 8192). | |
| reasoning_effort | No | Reasoning budget. "off" disables thinking (fastest); "high" and "max" enable the reasoning channel. | high |