Most chat-to-automation bridges are stateless: every message is a cold start, and the user re-explains context the system saw thirty seconds ago. FluidGrids fixes this with two pieces that snap together on the canvas: the chat trigger and session-keyed memory.
The chat trigger node gives a workflow a conversational front door — it registers a webhook endpoint and ships a built-in chat UI, so there's a place to type without building a frontend first. Each incoming message starts a run, carrying the message text and a session id that identifies the conversation it belongs to.
Behind the trigger sits an AI agent node with a persistent memory sub-node attached to its memory port. The session id keys the memory reads and writes: the first message in a session starts fresh, and every later message finds the conversation so far. Ask "what's the status of order 4187?", then follow with "and when will it ship?" — the agent resolves the pronoun because the memory recalls the order under discussion.
Give the agent reach with tool sub-nodes — an HTTP tool against your order API turns the chat into a live system interface, not a static FAQ — and pin its replies with a structured parser when downstream nodes need clean fields rather than prose.
Every conversation turn is a real workflow run: per-node states, the agent's tool invocations, durations, and typed errors, all in the run history. When the assistant answers strangely, you don't guess — you open the run and see exactly what the model received and which tool returned what. Conversational AI with an audit trail, assembled without writing an agent service.
Do it yourself
Wire a chat trigger into an AI agent with persistent memory so every message starts a run that remembers the session — and follow-up questions resolve against the conversation so far.
In the builder, add a chat trigger node to give the workflow a conversational front door.
You should see: It registers a webhook endpoint and ships a built-in chat UI — somewhere to type without building a frontend.
Ready to make this your story?



