import { ChatKit, useChatKit } from "@openai/chatkit-react"; const CHATKIT_API_URL = "/chatkit"; const CHATKIT_API_DOMAIN_KEY = "domain_pk_localhost_dev"; export function SimpleChatPanel() { const chatkit = useChatKit({ api: { url: CHATKIT_API_URL, domainKey: CHATKIT_API_DOMAIN_KEY }, composer: { attachments: { enabled: false }, }, }); return (