@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
15 lines (14 loc) • 630 B
TypeScript
import type { LlmChatProps } from './LlmChatProps';
/**
* LlmChat component that provides chat functionality with LLM integration
*
* This component internally manages messages, participants, and task progress,
* and uses the provided LLM tools to generate responses via `LlmExecutionTools.callChatModel`.
*
* Note: There are multiple chat components:
* - `<Chat/>` renders chat as it is without any logic
* - `<LlmChat/>` connected to LLM Execution Tools of Promptbook
*
* @public exported from `@promptbook/components`
*/
export declare function LlmChat(props: LlmChatProps): import("react/jsx-runtime").JSX.Element;