Endpoint
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | string | The request ID from the initial POST /v1/agent response |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
tool_outputs | array | Yes | Array of tool output objects |
tool_outputs[].tool_call_id | string | Yes | The id from the tool call |
tool_outputs[].output | string | Yes | The result of executing the tool (max 100KB) |
_compute_instance | string | Yes | Instance ID from previous response for routing |
Response
Returns the same shape asPOST /v1/agent:
status: "requires_tool_outputs"if more tool calls are neededstatus: "completed"if the agent has finished
Example
Notes
- No credit charge — tool output submissions are free. Credits are only charged on the initial request.
- 5-minute TTL — submit outputs within 5 minutes or the context expires.
- Machine affinity — always pass
_compute_instanceto route to the correct server.

