UNPKG

ai-crw

Version:

ai Chat Widget is a lightweight, customizable React component that adds an AI-powered chat bubble to your website. It seamlessly integrates with OpenRouter to enable real-time conversations powered by leading LLMs like GPT-4 and Claude.

13 lines (10 loc) 294 B
import React from 'react'; type PopChatProps = { contextData?: any; businessInfo?: string; chatHeadline?: string; aiCharacter?: string; direction?: 'ltr' | 'rtl'; }; declare const PopChat: React.FC<PopChatProps>; export { PopChat, type PopChatProps, PopChat as default };