UNPKG

react-ai-faq-chat

Version:

A smart AI-powered FAQ chatbot

14 lines (13 loc) 298 B
export interface AIFAQChatOptions { apiUrl: string; } interface Message { text: string; user: boolean; } export declare function useAIFAQChat(options: AIFAQChatOptions): { messages: Message[]; sendMessage: (question: string) => Promise<any>; loading: boolean; }; export {};