mongodb-chatbot-ui
Version:
UI React components for the MongoDB Assistant
14 lines (13 loc) • 533 B
TypeScript
import { References } from "./references";
import { ChatMessageFeedProps } from "./ChatMessageFeed";
import { DarkModeProps } from "./DarkMode";
export type ChatbotViewProps = DarkModeProps & Omit<ChatMessageFeedProps, "initialMessage"> & {
fatalErrorMessage?: string;
initialMessageReferences?: References;
initialMessageSuggestedPrompts?: string[];
initialMessageText?: string;
inputBarPlaceholder?: string;
inputBottomText?: string;
messageBottomContent?: React.ReactNode;
windowTitle?: string;
};