Avoid draft files in product-data generation

This commit is contained in:
wuyang6
2026-05-11 19:56:29 +08:00
parent 7dc7fa2e52
commit 41eb36a704
6 changed files with 71 additions and 12 deletions
@@ -21,6 +21,20 @@
},
"base_timestamp": {"type": "integer"},
"timestamp_step_ms": {"type": "integer", "minimum": 1, "default": 60000},
"default_request_id": {"type": "string", "default": "aabbccdd"}
"default_request_id": {"type": "string", "default": "aabbccdd"},
"records_output_path": {
"type": "string",
"description": "Optional JSONL output path for normalized records. In platform runtime, scratchpad/... and output/... are routed to the current session."
},
"append": {
"type": "boolean",
"description": "Append normalized records to records_output_path instead of overwriting it.",
"default": false
},
"return_records": {
"type": "boolean",
"description": "Whether to include records in stdout. Prefer false when records_output_path is set for large batches.",
"default": true
}
}
}