26 March 2026
New features
Streaming delta event
Added thepre:stream:delta event for real-time control over streaming responses. This event fires before each streaming delta chunk is processed and rendered, enabling you to inspect, modify, or suppress streaming content as it arrives. For more information, see the documentation for pre:stream:delta event.Silent messages
Added support for silent messages in thesend() method. Silent messages are sent to the agent but remain hidden from the chat UI, enabling cleaner user experiences for system notifications and background operations. For more information, see the documentation for send() method.Load chat thread
Added thefeatures.showThreadList configuration parameter to control the visibility of the chat history (thread list) in the side panel. This feature provides flexible control over conversation history display. For more information, see Customizing the chat UI: Features.Dropdown title customization
Added theshowSelectedAsTitle property for dropdown form elements in float and custom layouts. This property allows the detail view title to automatically update to display the text of the currently selected dropdown item, providing better context for users navigating form interactions. For more information, see the showSelectedAsTitle property details in updateCustomHeaderItems().13 March 2026
Documentation improvements
Context variables
Added comprehensive Context variables documentation covering methods for passing additional information from your web application to agents:- Two implementation methods:
- JWT token method: For stable and identity-related context such as user ID, role, and organization.
- Instance methods (
pre:sendevent): For dynamic and frequently changing context such as current page, form inputs, and selections.
- Complete implementation examples:
- Full JWT creation service with RS256 signing and user payload encryption
- Simple and advanced context injection patterns using instance methods
- Combined approach demonstrating both methods together
- Agent configuration: Step-by-step setup including agent definition with
context_access_enabledandcontext_variableslist.
Instance methods
Enhanced the Instance methods documentation with comprehensive coverage of all chat instance methods:- Method categories: Organized methods into Message, User interface, Chat widget state, Security and identity, and Events categories.
- Detailed method reference: Added complete documentation for all supported instance methods:
- Complete examples: Added working code examples demonstrating instance method usage patterns with event handlers.
- Runtime control: Included guidance on programmatically controlling chat behavior, state management, and UI customization.
Events
Enhanced the Events documentation with comprehensive coverage of all chat events:- Event categories: Organized events into Lifecycle, Message, Conversation, View, Customization, Feedback, and Security events categories.
- Detailed event reference: Added complete documentation for all supported events:
- Complete examples: Added working code examples demonstrating event usage patterns.
- Best practices: Included guidance on event handler patterns, modifying event data, and common use cases.

