feat: add initial implementation of Simple AI Provider package

This commit is contained in:
2025-05-28 11:54:24 +02:00
commit 42902445fb
15 changed files with 1616 additions and 0 deletions

7
src/providers/index.ts Normal file
View File

@ -0,0 +1,7 @@
/**
* Provider exports
* Centralizes all AI provider implementations for easy importing
*/
export { BaseAIProvider } from './base.js';
export { ClaudeProvider, type ClaudeConfig } from './claude.js';