Replies: 1 comment
-
|
@Kushiqtx From what I can tell, this is likely one of three things:
Things to check1. Verify you're creating a new sessionIf you're calling the Prediction API yourself, ensure each new conversation uses a unique 2. Check the memory configurationIf your Agent node has memory enabled (Buffer Memory, Redis Memory, etc.), verify:
A mismatch between the UI session and the memory session is a common cause of "old conversations" appearing unexpectedly. 3. Determine whether it's a UI or backend issueA useful test is to inspect the execution trace or the API response:
This helps narrow down where the stale context is being introduced. 4. Test with memory disabledAs a quick isolation step:
If the problem disappears, it's strong evidence that the memory/session layer is involved rather than the AgentFlow execution itself. If this is reproducible...If you're consistently seeing previous conversations injected into a brand-new session—even with unique session IDs—that would point to a probable AgentFlows bug rather than expected behavior. To help reproduce it, it would be useful to share:
Those details should make it much easier to determine whether this is a configuration issue or a regression in AgentFlows. If this solves your problem, feel free to mark it as the accepted answer so others can find it easily. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I'm building a chatbot using Flowise AgentFlows, and I’m facing a recurring issue where the chatbot suddenly shows older chat messages and responses from previous sessions, even after clearing the session.
The problem occurs mid-conversation:
I ask a new question
AgentFlows starts processing
Suddenly, the UI displays old chat logs from a previous run
Or it mixes old responses with the current one
It seems like the internal memory / session store is leaking or not resetting reliably.
flowise_ambient.mp4
Beta Was this translation helpful? Give feedback.
All reactions