I have a conversation from some database and i want to intialize the agents memory (I just read its called storage in agno) / Message history to the one with the external database.
Whats the best way to go about this?
It seems its currently very much geared towards having the agent run from scratch with a blank database.
Some pointers would be great, i have something like this:
Role= ‘assistant’, message=‘some message1’;
Role=‘user’, message=‘some response’;
Hi @nikste
Thanks for reaching out and for using Agno! I’ve looped in the right engineers to help with your question. We usually respond within 24 hours, but if this is urgent, just let us know, and we’ll do our best to prioritize it.
Appreciate your patience—we’ll get back to you soon!
Which will take the previous messages into account when generating the answer. I’m not sure yet if it also stores the history in some way when invoking agent.run a second time.
It was rather difficult to find it though and I’m still confused about the difference between storage and memory and would still like to be able to initialize memory(or storage?) from some messages i already have/that are stored in some other format in our production system.