mirror of
https://github.com/aljazceru/gpt-engineer.git
synced 2025-12-17 12:45:26 +01:00
Run simple per default
This commit is contained in:
@@ -203,9 +203,18 @@ def fix_code(ai: AI, dbs: DBs):
|
||||
|
||||
# Different configs of what steps to run
|
||||
STEPS = {
|
||||
"default": [gen_spec, gen_unit_tests, gen_code, gen_entrypoint, execute_entrypoint],
|
||||
"benchmark": [gen_spec, gen_unit_tests, gen_code, fix_code, gen_entrypoint],
|
||||
"default": [simple_gen, gen_entrypoint, execute_entrypoint],
|
||||
"benchmark": [simple_gen, gen_entrypoint],
|
||||
"simple": [simple_gen, gen_entrypoint, execute_entrypoint],
|
||||
"tdd": [gen_spec, gen_unit_tests, gen_code, gen_entrypoint, execute_entrypoint],
|
||||
"tdd+": [
|
||||
gen_spec,
|
||||
gen_unit_tests,
|
||||
gen_code,
|
||||
fix_code,
|
||||
gen_entrypoint,
|
||||
execute_entrypoint,
|
||||
],
|
||||
"clarify": [clarify, gen_clarified_code, gen_entrypoint, execute_entrypoint],
|
||||
"respec": [
|
||||
gen_spec,
|
||||
|
||||
@@ -6,6 +6,5 @@ and give details about anything that might be unclear. **Don't leave anything un
|
||||
|
||||
Second, lay out the names of the core classes, functions, methods that will be necessary,
|
||||
as well as a quick comment on their purpose.
|
||||
Finally list all non-standard dependencies you'll have to use.
|
||||
|
||||
This specification will be used later as the basis for the implementation.
|
||||
Reference in New Issue
Block a user