Spaces:
Runtime error
Runtime error
Commit
·
08600a5
1
Parent(s):
d3ca070
correct memory
Browse files
app.py
CHANGED
@@ -400,7 +400,8 @@ agent = initialize_agent(tools, llm,
|
|
400 |
'prefix': PREFIX,
|
401 |
'format_instructions': FORMAT_INSTRUCTIONS,
|
402 |
'suffix': SUFFIX
|
403 |
-
}
|
|
|
404 |
)
|
405 |
|
406 |
print(agent.agent.llm_chain.prompt.template)
|
|
|
400 |
'prefix': PREFIX,
|
401 |
'format_instructions': FORMAT_INSTRUCTIONS,
|
402 |
'suffix': SUFFIX
|
403 |
+
},
|
404 |
+
memory = memory,
|
405 |
)
|
406 |
|
407 |
print(agent.agent.llm_chain.prompt.template)
|