Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -55,7 +55,7 @@ import uuid
|
|
55 |
import json
|
56 |
import logging
|
57 |
import datetime
|
58 |
-
from
|
59 |
from planner import Planner
|
60 |
from executor import Executor
|
61 |
from critic import Critic
|
@@ -174,4 +174,4 @@ with gr.Blocks(css="style.css", title="Autonomous AI") as demo:
|
|
174 |
ask.click(lambda q,h: (h+[(q, cog_engine.learning_coach_response(q))], h), [q_in, hist], [chat, hist])
|
175 |
clear.click(lambda h: ([],h), [hist], [chat, hist])
|
176 |
|
177 |
-
demo.launch()
|
|
|
55 |
import json
|
56 |
import logging
|
57 |
import datetime
|
58 |
+
from memory_manager import MemoryManager
|
59 |
from planner import Planner
|
60 |
from executor import Executor
|
61 |
from critic import Critic
|
|
|
174 |
ask.click(lambda q,h: (h+[(q, cog_engine.learning_coach_response(q))], h), [q_in, hist], [chat, hist])
|
175 |
clear.click(lambda h: ([],h), [hist], [chat, hist])
|
176 |
|
177 |
+
demo.launch()
|