@nanocollective/nanocoder
Version:
A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter
10 lines • 412 B
TypeScript
import { LLMClient } from '../types/core.js';
interface ModelSelectorProps {
client: LLMClient | null;
currentModel: string;
onModelSelect: (model: string) => void;
onCancel: () => void;
}
export default function ModelSelector({ client, currentModel, onModelSelect, onCancel, }: ModelSelectorProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=model-selector.d.ts.map