UNPKG

claude-flow

Version:

Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration

74 lines (73 loc) 1.58 kB
{ "name": "@claude-flow/embeddings", "version": "3.0.0-alpha.16", "description": "V3 Embedding Service - OpenAI, Transformers.js, Agentic-Flow (ONNX), Mock providers with hyperbolic embeddings, normalization, and chunking", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.js", "import": "./dist/index.js" } }, "files": [ "dist", "src" ], "scripts": { "build": "tsc", "test": "vitest run", "test:watch": "vitest", "lint": "eslint src --ext .ts", "clean": "rm -rf dist" }, "keywords": [ "embeddings", "openai", "transformers", "vector", "similarity", "claude-flow", "v3", "hyperbolic", "poincare", "normalization", "chunking", "neural-substrate" ], "author": "Claude Flow Team", "license": "MIT", "dependencies": { "@xenova/transformers": "^2.17.0", "sql.js": "^1.13.0" }, "devDependencies": { "@types/node": "^20.10.0", "typescript": "^5.3.0", "vitest": "^4.0.16" }, "peerDependencies": { "@claude-flow/shared": "^3.0.0-alpha.1", "agentic-flow": "^2.0.0", "@huggingface/transformers": "^4.0.0" }, "peerDependenciesMeta": { "agentic-flow": { "optional": true }, "@huggingface/transformers": { "optional": true } }, "optionalDependencies": { "@huggingface/transformers": "^4.2.0" }, "engines": { "node": ">=20.0.0" }, "publishConfig": { "access": "public", "tag": "v3alpha" } }