UNPKG

giga-code

Version:

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

8 lines (7 loc) 235 B
import React from "react"; import { GigaAgent } from "../../agent/giga-agent"; interface ChatInterfaceProps { agent?: GigaAgent; } export default function ChatInterface({ agent }: ChatInterfaceProps): React.JSX.Element; export {};