UNPKG

giga-code

Version:

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

10 lines (9 loc) 288 B
import React from "react"; interface ChatInputProps { input: string; isProcessing: boolean; isStreaming: boolean; currentModel?: string; } export declare function ChatInput({ input, isProcessing, isStreaming, currentModel }: ChatInputProps): React.JSX.Element; export {};