freshcrate
Skin:/
Home > Frameworks > delight-ai-agent

delight-ai-agent

Sendbird AI-Agent

Why this rank:Recent releaseStrong adoptionHealthy release cadence

Description

Sendbird AI-Agent

README

Delight AI agent

Delight AI agent is an enterprise-grade, omnichannel AI solution designed to revolutionize customer service. Unlike traditional chatbots, Delight AI agents understand intent, maintain context, take action, and adapt over time, delivering natural, human-like conversations that resolve complex issues and escalate seamlessly when needed. (delight.ai)

Features

  • Omnichannel Support: Integrates with SMS, email, WhatsApp, in-app chat, web, and social messaging platforms, ensuring your AI agent is always available where your customers are. (delight.ai)

  • Contextual Understanding: Maintains conversation context across channels, allowing the AI agent to pick up the conversation exactly where the customer left off.

  • Proactive Engagement: Anticipates customer needs and initiates conversations on preferred channels before issues arise.

  • Unified Customer Insights: Transforms omnichannel conversations into unified customer insights to inform smarter business decisions. (delight.ai)

  • Seamless Integrations: Connects with customer support software like Salesforce, Zendesk, Notion, and Google Drive, allowing the AI agent to be trained using your existing content. (delight.ai)

Getting Started

To integrate Delight AI agent into your application, follow these steps:

  1. Log in to your dedicated Delight AI dashboard.

  2. Check the identifiers: In the dashboard, go to Channels → Messenger → Basic information to check the Application ID and AI Agent ID.

  3. Integrate SDK: Depending on your platform (iOS, Android, Web), integrate the appropriate Delight AI agent SDK into your application.

  4. Initialize AI Agent: Use the Application ID and Agent ID to initialize the AI agent within your application. You can find it under the Channels > Messenger menu on the Delight AI dashboard.

ai-agent-app-id-agent-id

Repository Structure

This repository contains platform-specific implementations and customer guides for the Delight AI agent:

  • JavaScript: Located in the js directory, includes:

    • Documentation guides for React and CDN integration
    • Interactive live examples
    • Downloadable sample projects for local development
  • iOS: Located in the ios directory, includes Swift integration guides and sample applications.

  • Android: Located in the android directory, includes Android integration documentation.

JavaScript Sample Projects

Each JavaScript platform directory contains a ready-to-run sample project:

  • js/react/sample/: Vite + TypeScript + React sample with full AI Agent integration
  • js/cdn/sample/: Vite + Vanilla JavaScript sample using CDN integration

Both samples demonstrate:

  • Basic AI Agent Messenger integration
  • User authentication and session handling
  • Context configuration
  • Manual messenger controls

To run the samples locally:

cd js/react/sample    # or js/cdn/sample
npm install
npm run dev

Each platform-specific directory contains its own README with detailed integration instructions.

Documentation

For comprehensive documentation, including API references and advanced configuration options, visit the Delight AI agent documentation.

Support

If you encounter any issues or have questions, please open an issue in this repository or Contact Sales.

License

This project is licensed under the MIT License.


For more information on Delight's AI Agent platform and its capabilities, visit the official website.

Release History

VersionChangesUrgencyDate
main@2026-06-02Latest activity on main branchHigh6/2/2026
v1.13.0### Features - Added Accessibility support - Full VoiceOver support across all UI components (labels, traits, hints, focus order) - Dynamic Type font scaling - Accessibility localization for 10 languages - Two-finger Z escape gesture for modals and containers - Improved text and feedback thumb contrast to meet WCAG 2.2 AA - Added countdown alert for delayed connection state - Displays a countdown alert when the server is busy, with estimated reconnect time - Auto-dismisses on succHigh4/24/2026
v1.12.0### Build Environment - Rebuilt with **Xcode 26** to comply with Apple's App Store submission requirement, effective late April 2026, which mandates that all apps be built using Xcode 26 or later. - No functional changes or API modifications are included in this release. > **Note for Xcode 16 users:** This release is compiled with Xcode 26 and may not be > compatible with Xcode 16 build environments. If you are still on Xcode 16, please > continue using the previous version. ### Added - ShHigh4/9/2026
v1.11.1### Build Environment - Rebuilt with **Xcode 26** to comply with Apple's App Store submission requirement, effective late April 2026, which mandates that all apps be built using Xcode 26 or later. - No functional changes or API modifications are included in this release. > **Note for Xcode 16 users:** This release is compiled with Xcode 26 and may not be > compatible with Xcode 16 build environments. If you are still on Xcode 16, please > continue using the previous version. ### Added - ShHigh4/8/2026
v1.11.0### Features - Added Live Metric API for real-time tracking of handoff, conversation, message, and connection events ### Improvements - Fixed iOS 16.0~16.1 UITextView freeze caused by TextKit2 Medium4/1/2026
v1.10.0### Features - Added thinking mode to the typing indicator with shimmer animation - Blocked user input during requesting handoff ### Improvements - Fixed AI agent profile not updating correctly Medium3/26/2026
v1.9.0### New Features #### AI Agent SDK now includes Desk ticket support. You can now access Desk ticket information directly from the AI Agent SDK for conversations handed off to Desk. This removes the need to use a separate Desk SDK for ticket lookup. Using the linked ticket ID, developers can retrieve ticket details such as status, agent, priority, group, response time, issue date, and custom fields through the new `DeskTicket` class. - Added `DeskTicket` class with properties: `id`, `title`, `Low3/18/2026
v1.8.0### New Features - **`AIAgentSessionDelegate`** — New session event callback protocol - `externalAuthTokenDidExpire` callback to receive token expiration events - Backward compatible by extending the existing `SessionDelegate` - Previous session delegate API is now deprecated → use `aiAgentSessionDelegate` instead - **`updateContext` / `patchContext`** — New public APIs on `AIAgentMessenger` for updating AI Agent context ### Bug Fixes - **Fixed anonymous user session expiration handlingLow3/10/2026
v1.7.0### New Features - **Multiple Files Message (MFM) support** - Users can now select and send multiple images at once as a `MultipleFilesMessage` - Documents are restricted to single-file sending only; only images support multi-selection - Add button is automatically disabled when a document is attached or the image limit is reached - **`SBAMultipleFilesMessageCell`** — new cell for rendering `MultipleFilesMessage` - Customizable via `SBAConversationModule.List.MultipleFilesMessageCell` Low2/20/2026
v1.6.0### New Features - **Context-Based Conversation Search** Added `AIAgentMessenger.searchConversation(params:completionHandler:)` to find existing conversations that match specific context criteria. This allows you to look up conversations associated with particular attributes (e.g., order ID, page URL) without manually tracking channel URLs. - Searches only open conversations for the specified AI Agent - Context matching uses AND condition — all provided key-value pairs must match - RetLow2/11/2026
v1.5.1### Improvements - Optimized layout update cycle in conversation message list to prevent redundant UI refresh calls Low2/5/2026
v1.5.0### New Features - Scroll Mode: Added ChatGPT-style fixed scroll mode for conversation list - New `SBAScrollMode` enum with `.auto` (default) and `.fixed` options - Configure via `AIAgentMessenger.config.conversation.list.scrollMode` - In `.fixed` mode, sent messages stay positioned at the top of the collection view - New Message Indicator: Added floating indicator for new incoming messages - Shows count of unread messages when scrolled away from bottom - Tap to scroll to the latest mLow2/3/2026
v1.4.3### Changes - Updated dependency SDK versions to the latest stable releases - SendbirdChatSDK: v4.35.0 - SendbirdMessageTemplate: v3.33.0 ### New Features - **User Input Blocking System**: Implemented server-driven user input disablingLow12/19/2025
v1.4.2### Improvements - Streaming Animation Performance Optimization - Prevented Streaming State Synchronization - **Renamed conversation action button label texts** - Standardized action button text to "Start a conversation" across conversation list footer and closed conversation view Low12/3/2025
v1.4.1### Bugfixes - Fixed issue where the action sheet text color was not visible - Fix thread timing issue in detachLauncherLow11/19/2025
v1.4.0### Improvements - Implemented file attachment rules system to support server-side control of uploadable file types - Improved the performance and structure of the starter kit - Changed SBALogType to hierarchical levels and simplified log level mapping across the SDKLow11/18/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

astack🤖 A composable framework for building AI applications.v0.1.1-beta.0
dagengineType-safe DAG execution engine for AI workflowsv0.3.0
outputThe open-source TypeScript framework for building AI workflows and agents. Designed for Claude Code describe what you want, Claude builds it, with all the best practices already in place.main@2026-06-05
opencode-magic-contextOpenCode plugin for Magic Context — cache-aware infinite context, cross-session memory, and background history compression for AI coding agentsdashboard-v0.5.1
PraisonAIPraisonAI đŸĻž — Hire a 24/7 AI Workforce. Stop writing boilerplate and start shipping autonomous agents that research, plan, code, and execute tasks. Deployed in 5 lines of code with built-in memory, Rv4.6.52

More in Frameworks

langchainThe agent engineering platform
deer-flowAn open-source long-horizon SuperAgent harness that researches, codes, and creates. With the help of sandboxes, memories, tools, skill, subagents and message gateway, it handles different levels of ta
tqdmFast, Extensible Progress Meter
simBuild, deploy, and orchestrate AI agents. Sim is the central intelligence layer for your AI workforce.