Hello,
I was testing this postgreSQL MCP quickstart in my own microk8s env.
I seems the agent will NOT remember all the previous conversation if code is not changed importing "from dapr_agents.memory import ConversationDaprStateMemory" and adding" memory=ConversationDaprStateMemory(store_name="conversationstore", session_id="my-unique-id")" in the agent code part.
...
from dapr_agents.memory import ConversationDaprStateMemory
...
global agent
agent = Agent(
name="SQL",
role="Database Expert",
instructions=instructions,
tools=tools,
memory=ConversationDaprStateMemory(
store_name="conversationstore", session_id="my-unique-id"
), # here we say to use redis
)
...
Best regards