Skip to content

RtkChatComposerUi

Last updated View as Markdown Agent setup

@deprecated . This component is deprecated, please use rtk-chat-composer-view instead.

Properties

Property Type Required Default Description
canSendFiles boolean - Whether user can send file messages
canSendTextMessage boolean - Whether user can send text messages
iconPack IconPack1 defaultIconPack Icon pack
prefill { suggestedReplies?: string[]; editMessage?: TextMessage; replyMessage?: TextMessage; } - prefill the composer
size Size1 - Size
t RtkI18n useLanguage() Language

Usage Examples

Basic Usage

import { RtkChatComposerUi } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return <RtkChatComposerUi />;
}

With Properties

import { RtkChatComposerUi } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return (
    <RtkChatComposerUi
      canSendFiles={true}
      canSendTextMessage={true}
      size="md"
    />
  );
}

Was this helpful?