Playground sessions not working properly

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.

Hi @rtadeawald, thanks for reaching out and supporting Agno. I’ve shared this with the team, we’re working through all requests one by one and will get back to you soon.
If it’s urgent, please let us know. We appreciate your patience!

1 Like

hey @rtadeawald i tested it and it is working well, maybe you storage.db sqlite file got corrupted , can you please retry again after deleting the file from tmp
thanks :raising_hands:

Hello, thanks for your response.
Still doesn’t work.

I’ve deleted, opened playground, created multiple sessions and when I close the terminal and relaunch, all the sessions are gone.

Don’t know why, but when I downgraded to agno==1.5.0, it worked.