UNPKG

@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

9 lines 387 B
/** * Chat handler module - manages LLM conversations and tool execution * * This module orchestrates the conversation flow between users and LLMs, * handling streaming responses, tool calls, and conversation state. */ export type { ChatHandlerReturn, UseChatHandlerProps } from './types.js'; export { useChatHandler } from './useChatHandler.js'; //# sourceMappingURL=index.d.ts.map