import React from 'react'; import { Box, Text } from 'ink'; import TextInput from 'ink-text-input'; import { getModel } from '../../config/globalConfig.js'; interface InputPromptProps { query: string; setQuery: (value: string) => void; onSubmit: (value: string) => void; isActive: boolean; forceKey: number; } const InputPrompt: React.FC = ({ query, setQuery, onSubmit, forceKey, }) => { const model = getModel(); return ( > ); } export default InputPrompt;