In my use case, I need to persist sessions into a DB (using Postgres at this time for the meta reference agent).
When I use directly the AgentConfig from the SDK, I can set enable_session_persistence
to True
. But when using the ReActAgent, which is just a wrapper with system prompts designed for ReAct , the ReActAgent does not expose that flag and it is hardcoded as False
in the AgentConfig
.
It would be tremendously useful to expose that flag so that session persistency is configurable directly by the user when using the ReAct agent.