mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 11:41:04 +00:00
- 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>
39 lines
1 KiB
JSON
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" }
|
|
]
|
|
}
|