// EE implementation for Chat/AI features // This will import the actual implementation from the ee/ directory import React from 'react'; import Chat from '@ee/components/chat/Chat'; // Chat service exports export { ChatStreamService } from '@ee/services/chatStreamService'; export { TemporaryApiKeyService } from '@ee/services/temporaryApiKeyService'; export { ChatCompletionsService } from '@ee/services/chatCompletionsService'; // EE endpoint registry, served by GET /api/v1/meta/mcp-registry on EE builds. export { chatApiRegistry as eeMcpRegistry } from '@ee/chat/registry/apiRegistry.generated'; export const ChatPage = () => { return ; }; export const ChatComponent = () => { return ; }; // Default export const chat = { ChatStreamService: () => import('@ee/services/chatStreamService').then(mod => mod.ChatStreamService), TemporaryApiKeyService: () => import('@ee/services/temporaryApiKeyService').then(mod => mod.TemporaryApiKeyService), ChatCompletionsService: () => import('@ee/services/chatCompletionsService').then(mod => mod.ChatCompletionsService), }; export default chat;