@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
17 lines • 355 B
TypeScript
export interface ModelEntry {
id: string;
name: string;
author: string;
size: string;
local: boolean;
api: boolean;
contextLength: number;
created: number;
quality: {
cost: number;
};
costType: 'free' | 'paid';
costDetails: string;
hasToolSupport: boolean;
}
//# sourceMappingURL=system.d.ts.map