Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -325,8 +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 |
print(purpose)
|
|
|
330 |
task=None
|
331 |
directory="./"
|
332 |
history = ""
|
|
|
325 |
return NAME_TO_FUNC[action_name](purpose, task, history, directory, action_input)
|
326 |
|
327 |
|
328 |
+
def run(purpose,history):
|
329 |
+
|
330 |
print(purpose)
|
331 |
+
print(history)
|
332 |
task=None
|
333 |
directory="./"
|
334 |
history = ""
|