mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
Refactored setup environment to use AgentConvo class
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
def process_user_stories(stories):
|
||||
return stories, None
|
||||
return stories
|
||||
|
||||
def process_user_tasks(tasks):
|
||||
return tasks, None
|
||||
return tasks
|
||||
|
||||
def process_os_technologies(technologies):
|
||||
return technologies, None
|
||||
return technologies
|
||||
|
||||
def run_commands(commands):
|
||||
return commands, None
|
||||
return commands
|
||||
|
||||
def return_array_from_prompt(name_plural, name_singular, return_var_name):
|
||||
return {
|
||||
@@ -110,6 +110,6 @@ DEVELOPMENT_PLAN = {
|
||||
},
|
||||
}],
|
||||
'functions': {
|
||||
'implement_development_plan': lambda plan: (plan, None)
|
||||
'implement_development_plan': lambda plan: plan
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user