16 lines
585 B
TypeScript
16 lines
585 B
TypeScript
/**
|
|
* Chat Services Index
|
|
* 导出所有聊天服务
|
|
*/
|
|
|
|
export { MessageService } from './MessageService'
|
|
export { ConversationService, type CreateConversationOptions } from './ConversationService'
|
|
export { StreamProcessor, streamProcessor, type StreamOptions, type StreamResult } from './StreamProcessor'
|
|
export { ToolExecutor, toolExecutor, type ToolCallOptions, type ToolCallResult } from './ToolExecutor'
|
|
export { ChatOrchestrator, chatOrchestrator } from './ChatOrchestrator'
|
|
export type {
|
|
CreateMessageOptions,
|
|
UpdateMessageOptions,
|
|
MessageQueryResult
|
|
} from './types'
|