@continue-reasoning/mini-agent
Version:
A platform-agnostic AI agent framework for building autonomous AI agents with tool execution capabilities
14 lines • 451 B
JavaScript
/**
* @fileoverview Universal IChat Framework - Main Exports
*
* This module provides the main exports for our unified chat system.
* All LLM providers implement the same IChat interface for consistency.
*/
// Core interfaces
export {
// Type guards
isChat, } from './interfaces.js';
// Provider implementations
export { OpenAIChatResponse } from './openaiChat.js';
export { GeminiChat } from './geminiChat.js';
//# sourceMappingURL=index.js.map