Notes/src/services/llm/rest_chat_service.ts

11 lines
315 B
TypeScript
Raw Normal View History

/**
2025-04-16 19:35:09 +00:00
* 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.
*/
2025-04-16 19:36:10 +00:00
import restChatService from './chat/rest_chat_service.js';
2025-04-16 19:35:09 +00:00
export * from './chat/interfaces/session.js';
export default restChatService;