feat: add Ollama client for local LLM support

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
William Valentin
2026-02-03 00:27:09 -08:00
parent 633cfcf713
commit bb16732562
4 changed files with 77 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
export { AnthropicClient, type AnthropicClientConfig } from './anthropic.js';
export { OpenAIClient, type OpenAIClientConfig } from './openai.js';
export { OllamaClient, type OllamaClientConfig } from './local/index.js';
export type { Message, ChatRequest, ChatResponse, ModelClient } from './types.js';