Notifications
Clear all
Topic starter
I’m trying to set up a workflow in callin.io with an AI bot via HTTP request, but I’m stuck at the step where I need to handle memory. Could someone share any workflows where I can see how to work with AI bots without using the AI agent node?
Posted : 25/06/2025 3:17 pm
Depending on your setup and your exact workflow, you could attempt to simulate memory by appending previous messages within the workflow each time you send the next request. You could create a list of objects, where each object includes a context, such as:
[
{
user: <user message>,
assistant: <assistnat answer>
},
{
user: <user message>,
assistant: <assistnat answer>
}
]
or store them in a database. This is just a theoretical approach, as I haven't personally tested it.
Posted : 25/06/2025 3:40 pm