Files
2026-07-13 12:58:18 +08:00

18 lines
477 B
TypeScript

"use client";
import { CopilotSidebar } from "@copilotkit/react-core/v2";
export function AssistantPanel() {
return (
<CopilotSidebar
defaultOpen
width={420}
labels={{
modalHeaderTitle: "Northstar Assistant",
welcomeMessageText:
"Hi — I can help you work your pipeline. Ask about deals, research an account, or draft a follow-up.",
chatInputPlaceholder: "Ask anything about your pipeline…",
}}
/>
);
}