Skip to content

Commit 7bac3af

Browse files
Document agent job failure when workers skip reporting
1 parent 8c58fb3 commit 7bac3af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codex-rs/core/src/tools/spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ fn create_spawn_agents_on_csv_tool() -> ToolSpec {
559559
);
560560
ToolSpec::Function(ResponsesApiTool {
561561
name: "spawn_agents_on_csv".to_string(),
562-
description: "Process a CSV by spawning one worker sub-agent per row. The instruction string is a template where `{column}` placeholders are replaced with row values. Each worker must call `report_agent_job_result` with a JSON object (matching `output_schema` when provided). This call blocks until all rows finish and automatically exports results to `output_csv_path` (or a default path)."
562+
description: "Process a CSV by spawning one worker sub-agent per row. The instruction string is a template where `{column}` placeholders are replaced with row values. Each worker must call `report_agent_job_result` with a JSON object (matching `output_schema` when provided); missing reports are treated as failures. This call blocks until all rows finish and automatically exports results to `output_csv_path` (or a default path)."
563563
.to_string(),
564564
strict: false,
565565
parameters: JsonSchema::Object {

0 commit comments

Comments
 (0)