UNPKG

@bobmatnyc/ai-code-review

Version:

A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter

11 lines (10 loc) 319 B
/** * @fileoverview Client implementations for various AI providers. * * This module serves as the main entry point for client implementations, * exporting all client classes. */ export * from './openaiClient'; export * from './anthropicClient'; export * from './geminiClient'; export * from './openRouterClient';