@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
11 lines • 414 B
JavaScript
import React from 'react';
export const modelCommand = {
name: 'model',
description: 'Select a model for the current provider',
handler: (_args, _messages, _metadata) => {
// This command is handled specially in app.tsx
// This handler exists only for registration purposes
return Promise.resolve(React.createElement(React.Fragment));
},
};
//# sourceMappingURL=model.js.map