agentic-flow 1.8.7 → 1.8.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,8 +4,10 @@
4
4
  */
5
5
  import { pipeline, env } from '@xenova/transformers';
6
6
  import { loadConfig } from './config.js';
7
- // Configure transformers.js to use WebAssembly backend (Node.js compatible)
8
- env.backends.onnx.wasm.numThreads = 1; // Use single thread for stability
7
+ // Configure transformers.js to use WASM backend only (avoid ONNX runtime issues)
8
+ // The native ONNX runtime causes "DefaultLogger not registered" errors in Node.js
9
+ env.backends.onnx.wasm.proxy = false; // Disable ONNX runtime proxy
10
+ env.backends.onnx.wasm.numThreads = 1; // Single thread for stability
9
11
  let embeddingPipeline = null;
10
12
  let isInitializing = false;
11
13
  const embeddingCache = new Map();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-flow",
3
- "version": "1.8.7",
3
+ "version": "1.8.8",
4
4
  "description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, ReasoningBank learning memory, and autonomous multi-agent swarms. Built by @ruvnet with Claude Agent SDK, neural networks, memory persistence, GitHub integration, and distributed consensus protocols.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",