UNPKG

@gsb-core/ai-assistant

Version:
39 lines 1.56 kB
"use strict"; /** * GSB AI Assistant Core Package * * This package provides AI chat capabilities for the GSB platform, * enabling integration with various LLM providers through a unified API. * * Key components: * - Entity interfaces for AI chat, messages, and LLM configuration * - AI Chat Service for communicating with the backend * * @module gsb-ai-assistant */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.GSB_AI_CHAT_SERVICE_ID = void 0; // Export entity interfaces __exportStar(require("./interfaces/entity-interfaces"), exports); // Export AI services __exportStar(require("./services/gsb-ai-chat.service"), exports); /** * Library ID for the GSB AI Chat Service * This ID is used to identify the service in the GSB platform */ exports.GSB_AI_CHAT_SERVICE_ID = '8562037a-8f11-4eae-ba97-6b7ccd852e57'; //# sourceMappingURL=index.js.map