qwen-code/integration-tests/concurrent-runner/config.example.json
pomelo-nwu b2b30c4c5d feat(runner): support auth_type for model configuration
- Add ModelSpec dataclass to hold model name and optional auth_type
- Update RunConfig.models to use List[ModelSpec]
- Add auth_type field to RunRecord with serialization support
- Parse models from config as string or {name, auth_type} dict
- Pass --auth-type flag to qwen command when specified

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-02-19 11:55:42 +08:00

39 lines
1 KiB
JSON

{
"concurrency": 3,
"yolo": true,
"source_repo": ".",
"branch": "main",
"worktree_base": "~/.qwen/worktrees",
"outputs_dir": "./outputs",
"results_file": "./results.json",
"tasks": [
{
"id": "code-review",
"name": "Security Code Review",
"prompts": [
"Review the codebase for security vulnerabilities.",
"Focus on input validation, authentication, and data handling."
]
},
{
"id": "refactor",
"name": "Refactoring Suggestions",
"prompts": [
"Analyze the code structure and suggest refactoring improvements.",
"Prioritize changes that improve maintainability and performance."
]
},
{
"id": "docs",
"name": "Documentation Generation",
"prompts": [
"Generate comprehensive API documentation for the main modules."
]
}
],
"models": [
"qwen3-coder-plus",
{ "name": "glm-4.7", "auth_type": "anthropic" },
{ "name": "claude-4-5-sonnet-20260219", "auth_type": "anthropic" }
]
}