Using AsyncPostgresSaver and AsyncPostgresStore - the code compiles, But I do not get an output or response. #4608
PoojithaGowthaman
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi @vbarda, I am adding both short term and long term memory for my agent. The code compiles without errors, but I do not get a response from LLM. Could You please help me understand if my implementation is correct?
`. async def agent(payload: AgentPayload):
# temp place holder value
user_id = "1" + str(payload.session_id)
namespace_for_memory = (user_id, payload.session_id)
config = {"configurable": {"thread_id": payload.session_id, "user_id": user_id}}
`
the output of the long term memory is returned {'3', 'v'} since I passed the "row_factory": dict_row, in kwargs. I was able to create the checkpointer successfully, the problem is when is when I add the long term memory.
Beta Was this translation helpful? Give feedback.
All reactions