@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.
Files changed (60) hide show
  1. package/dist/agents/index.d.ts +7 -0
  2. package/dist/agents/index.d.ts.map +1 -0
  3. package/dist/agents/index.js +4 -0
  4. package/dist/agents/index.js.map +1 -0
  5. package/dist/agents/observer-agent.d.ts +31 -0
  6. package/dist/agents/observer-agent.d.ts.map +1 -0
  7. package/dist/agents/observer-agent.js +164 -0
  8. package/dist/agents/observer-agent.js.map +1 -0
  9. package/dist/agents/reflector-agent.d.ts +66 -0
  10. package/dist/agents/reflector-agent.d.ts.map +1 -0
  11. package/dist/agents/reflector-agent.js +420 -0
  12. package/dist/agents/reflector-agent.js.map +1 -0
  13. package/dist/agents/types.d.ts +47 -0
  14. package/dist/agents/types.d.ts.map +1 -0
  15. package/dist/agents/types.js +2 -0
  16. package/dist/agents/types.js.map +1 -0
  17. package/dist/agents/vector-classification-rules.d.ts +14 -0
  18. package/dist/agents/vector-classification-rules.d.ts.map +1 -0
  19. package/dist/agents/vector-classification-rules.js +229 -0
  20. package/dist/agents/vector-classification-rules.js.map +1 -0
  21. package/dist/graph/entity-extractor.d.ts.map +1 -1
  22. package/dist/graph/entity-extractor.js +12 -2
  23. package/dist/graph/entity-extractor.js.map +1 -1
  24. package/dist/graph/graph-repository.d.ts +32 -0
  25. package/dist/graph/graph-repository.d.ts.map +1 -1
  26. package/dist/graph/graph-repository.js +56 -0
  27. package/dist/graph/graph-repository.js.map +1 -1
  28. package/dist/graph/temporal-query.d.ts +69 -0
  29. package/dist/graph/temporal-query.d.ts.map +1 -0
  30. package/dist/graph/temporal-query.js +172 -0
  31. package/dist/graph/temporal-query.js.map +1 -0
  32. package/dist/index.d.ts +13 -0
  33. package/dist/index.d.ts.map +1 -1
  34. package/dist/index.js +9 -0
  35. package/dist/index.js.map +1 -1
  36. package/dist/search/knowledge-searcher.d.ts +3 -1
  37. package/dist/search/knowledge-searcher.d.ts.map +1 -1
  38. package/dist/search/knowledge-searcher.js +18 -3
  39. package/dist/search/knowledge-searcher.js.map +1 -1
  40. package/dist/search/query-classifier.d.ts +17 -0
  41. package/dist/search/query-classifier.d.ts.map +1 -0
  42. package/dist/search/query-classifier.js +63 -0
  43. package/dist/search/query-classifier.js.map +1 -0
  44. package/dist/search/query-orchestrator.d.ts +39 -0
  45. package/dist/search/query-orchestrator.d.ts.map +1 -0
  46. package/dist/search/query-orchestrator.js +239 -0
  47. package/dist/search/query-orchestrator.js.map +1 -0
  48. package/dist/services/knowledge-service.d.ts +2 -0
  49. package/dist/services/knowledge-service.d.ts.map +1 -1
  50. package/dist/services/knowledge-service.js +1 -1
  51. package/dist/services/knowledge-service.js.map +1 -1
  52. package/dist/storage/knowledge-repository.d.ts +17 -1
  53. package/dist/storage/knowledge-repository.d.ts.map +1 -1
  54. package/dist/storage/knowledge-repository.js +72 -4
  55. package/dist/storage/knowledge-repository.js.map +1 -1
  56. package/dist/storage/migrations/010_memory_protocol.d.ts +12 -0
  57. package/dist/storage/migrations/010_memory_protocol.d.ts.map +1 -0
  58. package/dist/storage/migrations/010_memory_protocol.js +26 -0
  59. package/dist/storage/migrations/010_memory_protocol.js.map +1 -0
  60. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowledgine/core",
3
- "version": "0.3.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.7.0"
48
+ "yaml": "^2.8.3"
49
49
  },
50
50
  "optionalDependencies": {
51
51
  "onnxruntime-node": "~1.20.0",