@bobmatnyc/ai-code-review
Version:
A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter
12 lines (11 loc) • 410 B
TypeScript
/**
* @fileoverview Common base functionality for AI API clients.
*
* This module serves as the main entry point for the base client functionality,
* providing a unified interface for client implementation, HTTP requests,
* response processing, and model detection.
*/
export * from './abstractClient';
export * from './httpClient';
export * from './responseProcessor';
export * from './modelDetection';