@knowledgine/core 0.3.0 → 0.4.0
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.
- package/dist/agents/index.d.ts +7 -0
- package/dist/agents/index.d.ts.map +1 -0
- package/dist/agents/index.js +4 -0
- package/dist/agents/index.js.map +1 -0
- package/dist/agents/observer-agent.d.ts +31 -0
- package/dist/agents/observer-agent.d.ts.map +1 -0
- package/dist/agents/observer-agent.js +164 -0
- package/dist/agents/observer-agent.js.map +1 -0
- package/dist/agents/reflector-agent.d.ts +66 -0
- package/dist/agents/reflector-agent.d.ts.map +1 -0
- package/dist/agents/reflector-agent.js +420 -0
- package/dist/agents/reflector-agent.js.map +1 -0
- package/dist/agents/types.d.ts +47 -0
- package/dist/agents/types.d.ts.map +1 -0
- package/dist/agents/types.js +2 -0
- package/dist/agents/types.js.map +1 -0
- package/dist/agents/vector-classification-rules.d.ts +14 -0
- package/dist/agents/vector-classification-rules.d.ts.map +1 -0
- package/dist/agents/vector-classification-rules.js +229 -0
- package/dist/agents/vector-classification-rules.js.map +1 -0
- package/dist/graph/entity-extractor.d.ts.map +1 -1
- package/dist/graph/entity-extractor.js +12 -2
- package/dist/graph/entity-extractor.js.map +1 -1
- package/dist/graph/graph-repository.d.ts +32 -0
- package/dist/graph/graph-repository.d.ts.map +1 -1
- package/dist/graph/graph-repository.js +56 -0
- package/dist/graph/graph-repository.js.map +1 -1
- package/dist/graph/temporal-query.d.ts +69 -0
- package/dist/graph/temporal-query.d.ts.map +1 -0
- package/dist/graph/temporal-query.js +172 -0
- package/dist/graph/temporal-query.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/search/knowledge-searcher.d.ts +3 -1
- package/dist/search/knowledge-searcher.d.ts.map +1 -1
- package/dist/search/knowledge-searcher.js +18 -3
- package/dist/search/knowledge-searcher.js.map +1 -1
- package/dist/search/query-classifier.d.ts +17 -0
- package/dist/search/query-classifier.d.ts.map +1 -0
- package/dist/search/query-classifier.js +63 -0
- package/dist/search/query-classifier.js.map +1 -0
- package/dist/search/query-orchestrator.d.ts +39 -0
- package/dist/search/query-orchestrator.d.ts.map +1 -0
- package/dist/search/query-orchestrator.js +239 -0
- package/dist/search/query-orchestrator.js.map +1 -0
- package/dist/services/knowledge-service.d.ts +2 -0
- package/dist/services/knowledge-service.d.ts.map +1 -1
- package/dist/services/knowledge-service.js +1 -1
- package/dist/services/knowledge-service.js.map +1 -1
- package/dist/storage/knowledge-repository.d.ts +17 -1
- package/dist/storage/knowledge-repository.d.ts.map +1 -1
- package/dist/storage/knowledge-repository.js +72 -4
- package/dist/storage/knowledge-repository.js.map +1 -1
- package/dist/storage/migrations/010_memory_protocol.d.ts +12 -0
- package/dist/storage/migrations/010_memory_protocol.d.ts.map +1 -0
- package/dist/storage/migrations/010_memory_protocol.js +26 -0
- package/dist/storage/migrations/010_memory_protocol.js.map +1 -0
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knowledgine/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"better-sqlite3": "^11.0.0",
|
|
48
|
-
"yaml": "^2.
|
|
48
|
+
"yaml": "^2.8.3"
|
|
49
49
|
},
|
|
50
50
|
"optionalDependencies": {
|
|
51
51
|
"onnxruntime-node": "~1.20.0",
|