Skip to main content

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

PropDescription
enableUploadShow the file upload button in the input bar
enableExportShow the export conversation button in the header
enableDocumentUploadShow the document upload button in the input bar

Code Example

<Chatbot
title="Features Demo"
config={{ botProviderEndpoint: "skip" }}
enableUpload
enableExport
enableDocumentUpload
/>