Features
Toggle SDK features at runtime and see how they affect the chatbot interface.
Each feature corresponds to a boolean prop on <Chatbot />.
Feature Toggles
Current Configuration
{
"enableUpload": true,
"enableExport": true,
"enableDocumentUpload": true
}Loading chatbot...
Supported Features
| Prop | Description |
|---|---|
enableUpload | Show the file upload button in the input bar |
enableExport | Show the export conversation button in the header |
enableDocumentUpload | Show the document upload button in the input bar |
Code Example
<Chatbot
title="Features Demo"
config={{ botProviderEndpoint: "skip" }}
enableUpload
enableExport
enableDocumentUpload
/>