Make steps configurable

This commit is contained in:
Anton Osika
2023-06-17 13:02:16 +02:00
parent ee0737b6e3
commit 03d8fff5d2
10 changed files with 27 additions and 8 deletions

View File

@@ -62,7 +62,11 @@ def run_clarified(ai: AI, dbs: DBs):
return messages
STEPS = [clarify, run_clarified]
# Different configs of what steps to run
STEPS = {
'default': [run],
'clarify': [clarify, run_clarified],
}
# Future steps that can be added:
# improve_files,