I’m trying to set up a workflow in n8n with ai bot via http request, but i stacked 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 ai agent node
I’m trying to set up a workflow in n8n with ai bot via http request, but I’m stuck at the stage where I need to work with memory, can anyone share workflows where I can see how to work with ai bots without using ai agent node
Depending on your setup and your exact flow you could try to simulate memory by appending previous messages in the workflow each time you send the next request. You could come up with a list of objects, where each object has a context, like
[
{
user: <user message>,
assistant: <assistnat answer>
},
{
user: <user message>,
assistant: <assistnat answer>
}
]
or store them in the DB… This is just a theory though, I never tried it