qwen-code/integration-tests/concurrent-runner/examples/toy-config.json
tanzhenxin 09d4627a3d feat: move output files to outputs/ subdirectory for cleaner structure
- Move output-{N}.json and stderr-{N}.txt to outputs/ subdirectory
- Fix typo in toy-config.json results_file path (rest-run -> test-run)
- Add --output-format json to CLI commands
- Update file extensions from .txt to .json for stdout captures

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-01-28 15:29:11 +08:00

26 lines
773 B
JSON

{
"concurrency": 2,
"yolo": true,
"source_repo": "/Users/andy/workspace/projects/qwen-code/integration-tests/concurrent-runner/examples/toy-project",
"worktree_base": "~/.qwen/worktrees",
"outputs_dir": "./examples/test-run",
"results_file": "./examples/test-run/results.json",
"tasks": [
{
"id": "task-1",
"name": "Rabbit Counting",
"prompts": [
"Suppose we have 3 rabbits and 4 carrots. How many animals are there?"
]
},
{
"id": "task-2",
"name": "File Writer",
"prompts": [
"Use shell tool to get current date.",
"Create a new file called 'counter.txt' with numbers 1 to 10, each on a new line."
]
}
],
"models": ["qwen3-coder-plus", "claude-sonnet-4-20250514"]
}