Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/chat/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export {
isChat,
} from './interfaces.js';

export * from './interfaces.js';

// Provider implementations
export { OpenAIChatResponse } from './openaiChat.js';
export { GeminiChat } from './geminiChat.js';
Expand Down
7 changes: 6 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ export type {
PartialAgentConfig,
AllConfig,

// Session management interfaces
ISessionManager,
IStandardAgent,
AgentSession,

// Chat interfaces
IChat,
IChatConfig,
Expand Down Expand Up @@ -55,7 +60,7 @@ export type {

// Data types
ContentPart,
MessageItem as ConversationContent,
MessageItem,
LLMResponse,

// Event types
Expand Down