@coherenceplatform/sdk
Version:
Coherence SDK for embedding AI-powered chat into your applications
22 lines • 659 B
TypeScript
import { type FC } from "react";
interface ThreadProps {
/**
* Array of suggestion prompts to show when the thread is empty.
* If omitted or empty, no suggestions will be shown.
*/
suggestions?: string[];
/**
* The placeholder text shown when the thread is empty.
* Defaults to "How can I help you today?"
*/
placeholderText?: string;
/**
* Whether to enable the tools mode with separate toolbar.
* When false, uses the classic inline layout.
* Defaults to true.
*/
toolsEnabled?: boolean;
}
export declare const Thread: FC<ThreadProps>;
export {};
//# sourceMappingURL=thread.d.ts.map