-
Notifications
You must be signed in to change notification settings - Fork 590
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ruvector-mragent",
"version": "0.1.0",
"private": false,
"type": "module",
"description": "MRAgent — Cue-Tag-Content graph memory over RuVector, with a Meta-Harness Darwin loop that evolves the reconstruction harness (freeze the model, evolve the harness).",
"homepage": "https://github.com/ruvnet/ruvector/tree/main/examples/mragent#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ruvnet/ruvector.git",
"directory": "examples/mragent"
},
"files": [
"agent/",
"harness/",
"data/",
"tools/",
"test/",
"*.mjs",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"probe": "node probeDarwin.mjs",
"optimize": "node optimize.mjs",
"benchmark": "node benchmark.mjs",
"test": "node --test \"test/*.test.mjs\"",
"gen-corpus": "node tools/genCorpus.mjs"
},
"keywords": [
"ruvector",
"mragent",
"graph-memory",
"metaharness",
"darwin",
"rag",
"hnsw",
"cypher"
],
"license": "MIT",
"optionalDependencies": {
"@metaharness/darwin": "^0.3.1",
"ruvector": "^2.1.0"
},
"peerDependencies": {
"@metaharness/darwin": "^0.3.1"
},
"peerDependenciesMeta": {
"@metaharness/darwin": {
"optional": true
}
}
}