mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
Changed so development steps are hashed by the prompt path, prompt data and an llm request number + added functionality for resuming from a specific development step
This commit is contained in:
@@ -16,6 +16,9 @@ from database.models.file_snapshot import FileSnapshot
|
||||
class Project:
|
||||
def __init__(self, args, name=None, description=None, user_stories=None, user_tasks=None, architecture=None, development_plan=None, current_step=None):
|
||||
self.args = args
|
||||
self.llm_req_num = 0
|
||||
self.skip_steps = True
|
||||
self.skip_until_dev_step = args['skip_until_dev_step'] if 'skip_until_dev_step' in args else None
|
||||
# TODO make flexible
|
||||
self.root_path = ''
|
||||
|
||||
|
||||
Reference in New Issue
Block a user