"use client"; import { useChat } from "ai/react"; import { ChatInput, ChatMessages } from "@/app/components/ui/chat"; import AutofillQuestion from "@/app/components/ui/autofill-prompt/autofill-prompt-dialog"; export default function ChatSection() { const { messages, input, isLoading, handleSubmit, handleInputChange, reload, stop, } = useChat({ api: process.env.NEXT_PUBLIC_CHAT_API }); return (