Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -325,7 +325,10 @@ def run_action(purpose, task, history, directory, action_name, action_input):
|
|
325 |
return NAME_TO_FUNC[action_name](purpose, task, history, directory, action_input)
|
326 |
|
327 |
|
328 |
-
def run(purpose
|
|
|
|
|
|
|
329 |
history = ""
|
330 |
action_name = "UPDATE-TASK" if task is None else "MAIN"
|
331 |
action_input = None
|
|
|
325 |
return NAME_TO_FUNC[action_name](purpose, task, history, directory, action_input)
|
326 |
|
327 |
|
328 |
+
def run(purpose):
|
329 |
+
print(purpose)
|
330 |
+
task=None
|
331 |
+
directory="./"
|
332 |
history = ""
|
333 |
action_name = "UPDATE-TASK" if task is None else "MAIN"
|
334 |
action_input = None
|