"use client"; import * as React from "react"; import { Send } from "lucide-react"; import { cn } from "@/lib/utils"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardFooter } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; import axios from "axios"; import { ScrollArea } from "@/components/ui/scroll-area"; interface ChatCardProps { sessionId: string; } export function ChatCard({ sessionId }: ChatCardProps) { const [loading, setLoading] = React.useState(false); const [placeholder, setPlaceholder] = React.useState("Ask a question..."); const [messages, setMessages] = React.useState([ { role: "agent", content: `Hi, I am an AI Assistant. Start by adding data or asking questions.`, }, ]); const sendQuery = async (query: string, sessionId: string) => { try { const response = await axios.get( "/api/v1/chat?query=" + query + "&session_id=" + sessionId, ); setMessages((prevMessages) => [ ...prevMessages, // Spread the previous messages { role: "agent", content: response?.data?.response, }, ]); } catch (error) { console.log("Error getting response from bot. Please try again."); } }; const sendChatMessage = async (query: string, sessionId: string) => { await sendQuery(query, sessionId); }; return ( <>
{messages.map((message, index) => (
{message.content}
))}
{ event.preventDefault(); const currentMessage = event.currentTarget.message.value; event.target.message.value = ""; if (currentMessage === "") { return; } setMessages([ ...messages, { role: "user", content: currentMessage, }, ]); await sendChatMessage(currentMessage, sessionId); }} className="flex w-full items-center space-x-2" >
); }