diff --git a/docs.json b/docs.json
index f2ad5f2c5..ba15fbe19 100644
--- a/docs.json
+++ b/docs.json
@@ -1122,7 +1122,8 @@
"group": "Chat",
"pages": [
"ui-kit/react-native/core-features",
- "ui-kit/react-native/extensions"
+ "ui-kit/react-native/extensions",
+ "ui-kit/react-native/ai-features"
]
},
"ui-kit/react-native/call-features",
diff --git a/ui-kit/react-native/ai-features.mdx b/ui-kit/react-native/ai-features.mdx
new file mode 100644
index 000000000..d022f4386
--- /dev/null
+++ b/ui-kit/react-native/ai-features.mdx
@@ -0,0 +1,79 @@
+---
+title: "Smart Chat Features"
+description: "Integrate AI-powered conversation starters, smart replies, and conversation summaries into your React Native chat app."
+---
+
+
+
+| Field | Value |
+| --- | --- |
+| Package | `@cometchat/chat-uikit-react-native` |
+| Required setup | `CometChatUIKit.init(UIKitSettings)` then `CometChatUIKit.login("UID")` + AI features enabled in [CometChat Dashboard](/fundamentals/ai-user-copilot/overview) |
+| AI features | Conversation Starter, Smart Replies, Conversation Summary |
+| Key components | `CometChatMessageList` (Conversation Starter, Smart Replies), `CometChatMessageHeader` (Conversation Summary) |
+| Activation | Enable each AI feature from the CometChat Dashboard, then pass the corresponding prop to the component |
+
+
+
+CometChat AI features enhance user interaction and engagement in your application. Here's how the React Native UI Kit integrates these features.
+
+
+
+
+
+## Conversation Starter
+
+When a user initiates a new chat, the UI kit displays a list of suggested opening lines that users can select, making it easier for them to start a conversation. These suggestions are powered by CometChat's AI, which predicts contextually relevant conversation starter options.
+
+For a comprehensive understanding and guide on implementing and using the Conversation Starter, refer to our specific guide on the [Conversation Starter](/fundamentals/ai-user-copilot/conversation-starter).
+
+Once you have successfully activated the [Conversation Starter](/fundamentals/ai-user-copilot/conversation-starter) from your CometChat Dashboard, pass `showConversationStarters` to the [MessageList](/ui-kit/react-native/message-list) component to display the starters in an empty chat.
+
+```tsx
+
+```
+
+
+
+
+
+## Smart Replies
+
+Smart Replies are AI-generated responses to messages. They predict what a user might want to say next by analyzing the context of the conversation, allowing for quicker and more convenient responses on mobile devices.
+
+For a comprehensive understanding and guide on implementing and using Smart Replies, refer to our specific guide on the [Smart Replies](/fundamentals/ai-user-copilot/smart-replies).
+
+Once you have successfully activated the [Smart Replies](/fundamentals/ai-user-copilot/smart-replies) from your CometChat Dashboard, pass `showSmartReplies` to the [MessageList](/ui-kit/react-native/message-list) component. Smart reply chips appear above the composer after a message is received.
+
+```tsx
+
+```
+
+
+
+
+
+## Conversation Summary
+
+The Conversation Summary feature provides concise summaries of long conversations, allowing users to catch up quickly on missed chats. This feature uses natural language processing to determine the main points in a conversation.
+
+For a comprehensive understanding and guide on implementing and using the Conversation Summary, refer to our specific guide on the [Conversation Summary](/fundamentals/ai-user-copilot/conversation-summary).
+
+Once you have successfully activated the [Conversation Summary](/fundamentals/ai-user-copilot/conversation-summary) from your CometChat Dashboard, pass `showConversationSummaryButton` to the [MessageHeader](/ui-kit/react-native/message-header) component. A summary button appears in the header's overflow menu (⋮), and tapping it slides a summary panel in above the composer.
+
+```tsx
+
+```
+
+
+
+