Skip to content
How to configure an...
 
Notifications
Clear all

How to configure an AI agent with HTTPS calling, bypassing the AI agent node

2 Posts
2 Users
0 Reactions
4 Views
Vadym_Danylchuk
(@vadym_danylchuk)
Posts: 1
New Member
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
jabbson
(@jabbson)
Posts: 40
Eminent Member
 

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.

:slight_smile:

 
Posted : 25/06/2025 3:40 pm
Share: