From a99afa6091556d7ee46e7e9d739319ac9dfa752b Mon Sep 17 00:00:00 2001 From: PrajwalDhuleCC Date: Thu, 25 Jun 2026 15:13:23 +0530 Subject: [PATCH 1/2] docs(ui-kit): remove 1:1 conversation limitation note from AI assistant chat - Remove outdated limitation note about AI agents only responding in one-on-one conversations - Remove note about group support being on the roadmap --- ui-kit/react/v6/ai-assistant-chat.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui-kit/react/v6/ai-assistant-chat.mdx b/ui-kit/react/v6/ai-assistant-chat.mdx index 0890b1e67..6b6803409 100644 --- a/ui-kit/react/v6/ai-assistant-chat.mdx +++ b/ui-kit/react/v6/ai-assistant-chat.mdx @@ -54,10 +54,6 @@ description: "Composite AI agent chat with streaming responses, quick suggestion `CometChatAIAssistantChat` is a standalone AI chat panel. It composes an internal message header, message list, and message composer into a self-contained AI conversation experience. It requires a `CometChat.User` representing the AI agent. - -**1:1 conversations only.** AI Agents currently respond only in one-on-one conversations between an end user and the agent user. They do not respond to messages sent in groups, even if the agent user is added as a member or owner. Group support is on the roadmap — share your use case on [feedback.cometchat.com](https://feedback.cometchat.com). - - ```tsx lines import { useState, useEffect } from "react"; import { CometChat } from "@cometchat/chat-sdk-javascript"; From c93eea585d6b6d346bb3bc3382bacc882f38c0ad Mon Sep 17 00:00:00 2001 From: PrajwalDhuleCC Date: Tue, 7 Jul 2026 11:15:17 +0530 Subject: [PATCH 2/2] docs(ui-kit): add AI agent behavior note for 1:1 and group conversations --- ui-kit/react/v6/ai-assistant-chat.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui-kit/react/v6/ai-assistant-chat.mdx b/ui-kit/react/v6/ai-assistant-chat.mdx index 6b6803409..ce1f4dfb1 100644 --- a/ui-kit/react/v6/ai-assistant-chat.mdx +++ b/ui-kit/react/v6/ai-assistant-chat.mdx @@ -54,6 +54,10 @@ description: "Composite AI agent chat with streaming responses, quick suggestion `CometChatAIAssistantChat` is a standalone AI chat panel. It composes an internal message header, message list, and message composer into a self-contained AI conversation experience. It requires a `CometChat.User` representing the AI agent. + +**1:1 and group conversations.** AI Agents work in both one-on-one and group conversations. In a 1:1 chat, the end user talks directly with the agent user. In a group, the agent participates as a member — its messages (including cards) are delivered and attributed like any other member's message. If the group contains only one user and one agent, the agent responds automatically. In groups with more than two members, the agent only responds when @mentioned. + + ```tsx lines import { useState, useEffect } from "react"; import { CometChat } from "@cometchat/chat-sdk-javascript";