Skip to main content
March 2026

Save response in interactive message nodes

The Buttons, List, and Numbered list nodes now allow saving the option selected by the user directly into a memory variable from the Advanced tab in the configuration panel.

Main highlights

  • Response variable in Buttons: Enable the “Save response” toggle and enter the variable name. The payload of the chosen button becomes available as {{$memory.variable_name}}.
  • Response variable in List: Same functionality for the List node. The selected option is stored for later use in the flow.
  • Response variable in Numbered list: Full support in the new Numbered list node, available on all channels.
  • New Numbered list node: Interactive message node that presents options as numbered text, compatible with WhatsApp, Web, Facebook, and Instagram.

How to use it

  1. Open the configuration panel of a Buttons, List, or Numbered list node.
  2. Go to the Advanced tab.
  3. Enable the Save response toggle.
  4. Enter the name of the variable where the selection will be stored.
  5. Access the value in subsequent nodes with {{$memory.variable_name}}.
February 2026

New channel activation documentation

Complete documentation on how to activate and configure communication channels on the Jelou platform.

Documented channels

  • Facebook: Connect your Facebook page to manage conversations
  • Web: Integrate a chat widget on your website
  • WhatsApp: Set up WhatsApp Business API for customer support

Included content

  • Prerequisites for each channel
  • Basic step-by-step configuration
  • Validations and restrictions
  • Channel-specific best practices

View activation guides

Check out the complete channel activation guides.
February 2026

UX improvements in Random node

New improved interface for the Random node with better user experience and visual validation.

Main improvements

  • Improved empty state: Clear interface when no routes are configured with a direct action button
  • Visual validation: Color alerts indicating whether the percentage distribution adds up to 100%
  • Better organization: Redesigned configuration panel to make route management easier
  • Real-time feedback: Visual indicators of the percentage distribution status

View documentation

Check out the complete guide for the Random node.
February 2026

New Skills & Tools interface in Brain Studio

Improved user experience with a new design for accessing Skills, Tools, and Marketplace.

Main changes

  • Floating button: Replaces the fixed left sidebar with a floating button showing the skill name and a folder icon
  • Popover panel: Clicking the floating button opens a pop-up panel with access to Skills, Tools, and Marketplace
  • Cleaner interface: More workspace by removing the permanent sidebar

View updated documentation

Check out the updated guides with the new interface.
February 2026

Advanced AI Agent configuration

New documentation on the advanced configuration options available in the AI Agent node.

Documented options

  • Quick reply payload support: Allows processing quick reply payloads in interactive messages
  • PDF document support: Enables reading and processing PDF files (text only, no images)
  • Read image with URL and caption: Processes images along with their text descriptions

View documentation

Check out the complete guide for advanced AI Agent configuration.
January 2025

Memory V2

New version of the memory system with significant improvements for the code node.

Main highlights

  • File support: Store images, videos, audio, and documents (up to 10MB)
  • TTL control: Define expiration time for each stored piece of data
  • Improved API: Specific methods for primitives, JSON, and files
  • Greater capacity: JSON up to 5KB, files up to 10MB

Quick example

// Primitives
$memory.set('language', 'en');

// JSON with 1-hour TTL
$memory.setJson('profile', { name: 'Maria' }, 3600);

// Files with 1-day TTL
await $memory.setFile('photo', base64Data, 86400, 'image/jpeg');

Full documentation

Check out the detailed guide with all methods, supported types, and migration examples.