import React, { useState } from 'react'; import { useChat } from 'ai/react'; import { MessageCircle, X, Send, Loader2, Bot } from 'lucide-react'; export default function ChatWidget() { const [isOpen, setIsOpen] = useState(false); // Ссылка берется из настроек Space или .env файла const apiEndpoint = "https://levinaleksey-chat-b.hf.space/api/chat"; const { messages, input, handleInputChange, handleSubmit, isLoading } = useChat({ api: apiEndpoint, }); return (
Inventory AI
Gemini 1.5 Flash Online