-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0920Update, add Human-Agent-Interaction mode
- Loading branch information
Showing
29 changed files
with
5,953 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
{ | ||
"chain": [ | ||
{ | ||
"phase": "DemandAnalysis", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": -1, | ||
"need_reflect": "True" | ||
}, | ||
{ | ||
"phase": "LanguageChoose", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": -1, | ||
"need_reflect": "True" | ||
}, | ||
{ | ||
"phase": "Coding", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": 1, | ||
"need_reflect": "False" | ||
}, | ||
{ | ||
"phase": "CodeCompleteAll", | ||
"phaseType": "ComposedPhase", | ||
"cycleNum": 10, | ||
"Composition": [ | ||
{ | ||
"phase": "CodeComplete", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": 1, | ||
"need_reflect": "False" | ||
} | ||
] | ||
}, | ||
{ | ||
"phase": "CodeReview", | ||
"phaseType": "ComposedPhase", | ||
"cycleNum": 3, | ||
"Composition": [ | ||
{ | ||
"phase": "CodeReviewComment", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": 1, | ||
"need_reflect": "False" | ||
}, | ||
{ | ||
"phase": "CodeReviewModification", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": 1, | ||
"need_reflect": "False" | ||
} | ||
] | ||
}, | ||
{ | ||
"phase": "HumanAgentInteraction", | ||
"phaseType": "ComposedPhase", | ||
"cycleNum": 5, | ||
"Composition": [ | ||
{ | ||
"phase": "CodeReviewHuman", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": 1, | ||
"need_reflect": "False" | ||
} | ||
] | ||
}, | ||
{ | ||
"phase": "Test", | ||
"phaseType": "ComposedPhase", | ||
"cycleNum": 3, | ||
"Composition": [ | ||
{ | ||
"phase": "TestErrorSummary", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": 1, | ||
"need_reflect": "False" | ||
}, | ||
{ | ||
"phase": "TestModification", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": 1, | ||
"need_reflect": "False" | ||
} | ||
] | ||
}, | ||
{ | ||
"phase": "EnvironmentDoc", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": 1, | ||
"need_reflect": "True" | ||
}, | ||
{ | ||
"phase": "Manual", | ||
"phaseType": "SimplePhase", | ||
"max_turn_step": 1, | ||
"need_reflect": "False" | ||
} | ||
], | ||
"recruitments": [ | ||
"Chief Executive Officer", | ||
"Counselor", | ||
"Chief Human Resource Officer", | ||
"Chief Product Officer", | ||
"Chief Technology Officer", | ||
"Programmer", | ||
"Code Reviewer", | ||
"Software Test Engineer", | ||
"Chief Creative Officer" | ||
], | ||
"clear_structure": "True", | ||
"brainstorming": "False", | ||
"gui_design": "True", | ||
"git_management": "False", | ||
"self_improve": "False" | ||
} |
Oops, something went wrong.