modelosaurus-chatbot
Version:
A customizable plug and play chatbot component for React applications, designed to work seamlessly with the Modelosaurus API.
7 lines (6 loc) • 377 B
TypeScript
import { ChatbotData } from '../types';
export declare const fetchChatbotData: (modelosaurusKey: string, chatbotId: string) => Promise<{
chatbotData?: ChatbotData;
vectorStoreUrl?: string;
}>;
export declare const sendChatMessage: (modelosaurusKey: string, chatbotId: string, message: string, settings: ChatbotData, vectorStoreUrl: string | null) => Promise<Response>;