UNPKG

automagik-cli

Version:

Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems

14 lines (13 loc) 387 B
/** * Gemini-style input component that combines gemini's visual design * with our working automagik backend functionality */ import React from 'react'; interface GeminiStyleInputProps { onSubmit: (message: string) => void; disabled?: boolean; placeholder?: string; focus?: boolean; } export declare const GeminiStyleInput: React.FC<GeminiStyleInputProps>; export {};