UNPKG

@continue-reasoning/mini-agent

Version:

A platform-agnostic AI agent framework for building autonomous AI agents with tool execution capabilities

11 lines 693 B
/** * @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. */ export { ContentPart, MessageItem, IChat, IChatConfig, LLMResponse, LLMStart, LLMChunk, LLMChunkTextDelta, LLMChunkTextDone, LLMChunkThinking, LLMFunctionCallDone, LLMFunctionCallDelta, LLMComplete, ChunkItem, ToolDeclaration, FunctionCallStr, isChat, } from './interfaces.js'; export { OpenAIChatResponse } from './openaiChat.js'; export { GeminiChat } from './geminiChat.js'; export type { ITokenTracker, ITokenUsage } from '../interfaces.js'; //# sourceMappingURL=index.d.ts.map