create-ai-chat-context-experimental
Version:
Phase 2: TypeScript rewrite - AI Chat Context & Memory System with conversation extraction and AICF format support (powered by aicf-core v2.1.0).
22 lines • 1.88 kB
JavaScript
;
/**
* This file is part of create-ai-chat-context-experimental.
* Licensed under the GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later).
* See LICENSE file for details.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ValidationError = exports.PlatformDetectionError = exports.ExtractionError = exports.ConversationParsingError = exports.FileOperationError = exports.AppError = exports.isErr = exports.isOk = exports.Err = exports.Ok = void 0;
var result_js_1 = require("./result.js");
Object.defineProperty(exports, "Ok", { enumerable: true, get: function () { return result_js_1.Ok; } });
Object.defineProperty(exports, "Err", { enumerable: true, get: function () { return result_js_1.Err; } });
Object.defineProperty(exports, "isOk", { enumerable: true, get: function () { return result_js_1.isOk; } });
Object.defineProperty(exports, "isErr", { enumerable: true, get: function () { return result_js_1.isErr; } });
// Error types
var errors_js_1 = require("./errors.js");
Object.defineProperty(exports, "AppError", { enumerable: true, get: function () { return errors_js_1.AppError; } });
Object.defineProperty(exports, "FileOperationError", { enumerable: true, get: function () { return errors_js_1.FileOperationError; } });
Object.defineProperty(exports, "ConversationParsingError", { enumerable: true, get: function () { return errors_js_1.ConversationParsingError; } });
Object.defineProperty(exports, "ExtractionError", { enumerable: true, get: function () { return errors_js_1.ExtractionError; } });
Object.defineProperty(exports, "PlatformDetectionError", { enumerable: true, get: function () { return errors_js_1.PlatformDetectionError; } });
Object.defineProperty(exports, "ValidationError", { enumerable: true, get: function () { return errors_js_1.ValidationError; } });
//# sourceMappingURL=index.js.map