UNPKG

giga-code

Version:

A personal AI CLI assistant powered by Grok for local development.

10 lines (9 loc) 357 B
import React from "react"; import { GigaAgent, ChatEntry } from "../../agent/giga-agent"; interface ChatInterfaceProps { agent?: GigaAgent; initialMessages?: ChatEntry[]; initialConversationId?: string; } export default function ChatInterface({ agent, initialMessages, initialConversationId }: ChatInterfaceProps): React.JSX.Element; export {};