UNPKG

@vibe-kit/grok-cli

Version:

An open-source AI agent that brings the power of Grok directly into your terminal.

9 lines (8 loc) 284 B
import React from "react"; import { GrokAgent } from "../../agent/grok-agent.js"; interface ChatInterfaceProps { agent?: GrokAgent; initialMessage?: string; } export default function ChatInterface({ agent, initialMessage, }: ChatInterfaceProps): React.JSX.Element; export {};