manifest
Version:
Self-hosted Manifest LLM router with embedded server, SQLite database, and dashboard
41 lines • 2.24 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommonModule = void 0;
const common_1 = require("@nestjs/common");
const typeorm_1 = require("@nestjs/typeorm");
const tenant_entity_1 = require("../entities/tenant.entity");
const ingest_event_bus_service_1 = require("./services/ingest-event-bus.service");
const manifest_runtime_service_1 = require("./services/manifest-runtime.service");
const tenant_cache_service_1 = require("./services/tenant-cache.service");
const user_cache_interceptor_1 = require("./interceptors/user-cache.interceptor");
const agent_cache_interceptor_1 = require("./interceptors/agent-cache.interceptor");
let CommonModule = class CommonModule {
};
exports.CommonModule = CommonModule;
exports.CommonModule = CommonModule = __decorate([
(0, common_1.Global)(),
(0, common_1.Module)({
imports: [typeorm_1.TypeOrmModule.forFeature([tenant_entity_1.Tenant])],
providers: [
ingest_event_bus_service_1.IngestEventBusService,
manifest_runtime_service_1.ManifestRuntimeService,
tenant_cache_service_1.TenantCacheService,
user_cache_interceptor_1.UserCacheInterceptor,
agent_cache_interceptor_1.AgentCacheInterceptor,
],
exports: [
ingest_event_bus_service_1.IngestEventBusService,
manifest_runtime_service_1.ManifestRuntimeService,
tenant_cache_service_1.TenantCacheService,
user_cache_interceptor_1.UserCacheInterceptor,
agent_cache_interceptor_1.AgentCacheInterceptor,
],
})
], CommonModule);
//# sourceMappingURL=common.module.js.map