Hello, Guys.
I’ve created a simple Discord Agent that uses storage and memory.
It’s working fine and I can see that the memory and storage does contains data on it
storage = SqliteStorage(table_name="agent_sessions", db_file="tmp/storage.db")
sess_ids = storage.get_all_session_ids() # there are some ids here
storage.read(sess_ids[0]) # it does return the previous chats
researcher = Agent(
model=OpenAIChat(id="gpt-4.1-mini"),
name="CopyMail",
tools=[TavilyTools()],
memory=memory,
enable_agentic_memory=True,
num_history_responses=3,
add_history_to_messages=True,
storage=storage,
markdown=True,
description=prompt["description"],
instructions=prompt["instructions"]
)
but, when I connect my agent to the playground, I’m not beeing able to see any of that data:
What I’m doing wrong?
Thank you.