UNPKG

@promptbook/legacy-documents

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

16 lines (15 loc) 590 B
import type { ChatProps } from './ChatProps'; /** * Renders a chat with messages and input for new messages * * Note: 🔇 This component does NOT have speak functionality, it just allows to trigger voice recognition * * Note: There are multiple chat components: * - `<Chat/>` renders chat as it is without any logic * - `<LlmChat/>` connected to LLM Execution Tools of Promptbook * * Use <WorkerChat/> or <SignalChat/> in most cases. * * @public exported from `@promptbook/components` */ export declare function Chat(props: ChatProps): import("react/jsx-runtime").JSX.Element;