@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 • 334 B
TypeScript
/**
* Message type used for testing the empty assistant message filter.
* This is a simplified version of the AI SDK's internal message format.
*/
export interface TestableMessage {
role: 'system' | 'user' | 'assistant' | 'tool';
content: string | unknown[];
toolCalls?: unknown[];
}
//# sourceMappingURL=types.d.ts.map