automagik-cli
Version:
Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems
19 lines (18 loc) • 571 B
TypeScript
/**
* Exact copy of gemini-cli InputPrompt adapted for Automagik backend
*/
import React from 'react';
import { TextBuffer } from './shared/text-buffer.js';
export interface InputPromptProps {
buffer: TextBuffer;
onSubmit: (value: string) => void;
userMessages: readonly string[];
onClearScreen: () => void;
inputWidth: number;
suggestionsWidth: number;
shellModeActive: boolean;
setShellModeActive: (value: boolean) => void;
placeholder?: string;
focus?: boolean;
}
export declare const InputPrompt: React.FC<InputPromptProps>;