Leonydis137 commited on
Commit
8a190fe
·
verified ·
1 Parent(s): e24ecce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -55,7 +55,7 @@ import uuid
55
  import json
56
  import logging
57
  import datetime
58
- from memory import MemoryManager
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()