automagik-cli
Version:
Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems
18 lines (17 loc) • 561 B
TypeScript
/**
* Gemini-style InputPrompt component that uses the visual design from gemini-cli
* but connects to automagik's backend functionality
*/
import React from 'react';
import { TextBuffer } from './shared/text-buffer.js';
export interface GeminiInputPromptProps {
buffer: TextBuffer;
onSubmit: (value: string) => void;
onClearScreen: () => void;
placeholder?: string;
focus?: boolean;
inputWidth: number;
shellModeActive?: boolean;
isActive: boolean;
}
export declare const GeminiInputPrompt: React.FC<GeminiInputPromptProps>;