{"record":{"id":"870165e6e4dd62bb","repo":"ruvnet/ruflo","slug":"hyperbolic-module-not-initialized","errorCode":null,"errorMessage":"Hyperbolic module not initialized","messagePattern":"Hyperbolic module not initialized","errorType":"exception","errorClass":"Error","httpStatus":null,"severity":"error","filePath":"v3/plugins/ruvector-upstream/src/bridges/hyperbolic.ts","lineNumber":102,"sourceCode":"\n  async destroy(): Promise<void> {\n    this._module = null;\n    this._status = 'unloaded';\n  }\n\n  isReady(): boolean {\n    return this._status === 'ready';\n  }\n\n  getModule(): HyperbolicModule | null {\n    return this._module;\n  }\n\n  /**\n   * Embed a vector into hyperbolic space\n   */\n  embed(vector: Float32Array, config?: Partial<HyperbolicConfig>): HyperbolicPoint {\n    if (!this._module) throw new Error('Hyperbolic module not initialized');\n    const mergedConfig = { ...this.config, ...config };\n    return this._module.embed(vector, mergedConfig);\n  }\n\n  /**\n   * Project hyperbolic point to Euclidean space\n   */\n  project(point: HyperbolicPoint): Float32Array {\n    if (!this._module) throw new Error('Hyperbolic module not initialized');\n    return this._module.project(point);\n  }\n\n  /**\n   * Compute hyperbolic distance\n   */\n  distance(a: HyperbolicPoint, b: HyperbolicPoint): number {\n    if (!this._module) throw new Error('Hyperbolic module not initialized');\n    return this._module.distance(a, b);","sourceCodeStart":84,"sourceCodeEnd":120,"githubUrl":"https://github.com/ruvnet/ruflo/blob/fa13ee4ad60ac2090b1480656eb233521790d640/v3/plugins/ruvector-upstream/src/bridges/hyperbolic.ts#L84-L120","documentation":"HyperbolicBridge.embed() was called while this._module is null — the hyperbolic module was never loaded (initialize() not run, failed, or destroy() called). Every module-backed method on the bridge carries this not-initialized sentinel.","triggerScenarios":"Thrown at v3/plugins/ruvector-upstream/src/bridges/hyperbolic.ts:102 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Ensure the module/bridge/plugin initialize() method has been called and awaited before invoking this operation.","Guard against calls made during startup: await the initialization promise or check the initialized flag and fail fast with a clear setup hint."],"exampleFix":null,"handlingStrategy":"validation","validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"fa13ee4ad60ac2090b1480656eb233521790d640","analyzedAt":"2026-08-18T21:34:22.708Z","contentChangedAt":"2026-08-18T21:34:22.708Z","schemaVersion":2},"datasetVersion":"2026-09-14T00:17:10.932Z"}