trilium/src/services/llm/rest_chat_service.ts
2025-04-16 19:35:09 +00:00

11 lines
315 B
TypeScript

/**
* REST Chat Service
*
* This file is a wrapper for the modular implementation in the chat/ directory.
* See chat/rest-chat-service.ts for the actual implementation.
*/
import restChatService from './chat/rest-chat-service.js';
export * from './chat/interfaces/session.js';
export default restChatService;