Update app.py
Browse files
app.py
CHANGED
@@ -15,6 +15,7 @@ agent = initialize_agent(tools, llm, memory=memory, agent="conversational-react-
|
|
15 |
|
16 |
def run_text(text, state):
|
17 |
output = agent.run(input=(text))
|
|
|
18 |
print(output)
|
19 |
return [(text,output)]
|
20 |
|
|
|
15 |
|
16 |
def run_text(text, state):
|
17 |
output = agent.run(input=(text))
|
18 |
+
print(memory)
|
19 |
print(output)
|
20 |
return [(text,output)]
|
21 |
|