@grackle-ai/knowledge 0.56.3
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/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -0
- package/package.json +42 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
/**
|
|
3
|
+
* Scaffold for a knowledge graph subsystem for Grackle.
|
|
4
|
+
*
|
|
5
|
+
* Defines the surface area for integrating structured knowledge storage and
|
|
6
|
+
* retrieval so that agents can share and reuse contextual information across
|
|
7
|
+
* sessions. Concrete storage technologies and capabilities are provided by
|
|
8
|
+
* implementations that build on this package.
|
|
9
|
+
*
|
|
10
|
+
* @packageDocumentation
|
|
11
|
+
*/
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;GASG"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
/**
|
|
3
|
+
* Scaffold for a knowledge graph subsystem for Grackle.
|
|
4
|
+
*
|
|
5
|
+
* Defines the surface area for integrating structured knowledge storage and
|
|
6
|
+
* retrieval so that agents can share and reuse contextual information across
|
|
7
|
+
* sessions. Concrete storage technologies and capabilities are provided by
|
|
8
|
+
* implementations that build on this package.
|
|
9
|
+
*
|
|
10
|
+
* @packageDocumentation
|
|
11
|
+
*/
|
|
12
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;GASG"}
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@grackle-ai/knowledge",
|
|
3
|
+
"version": "0.56.3",
|
|
4
|
+
"description": "Scaffold for the Knowledge Graph subsystem for Grackle",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/nick-pape/grackle.git",
|
|
9
|
+
"directory": "packages/knowledge"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"grackle",
|
|
13
|
+
"knowledge-graph",
|
|
14
|
+
"neo4j",
|
|
15
|
+
"vector-search"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=22.0.0"
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "dist/index.js",
|
|
22
|
+
"types": "dist/index.d.ts",
|
|
23
|
+
"files": [
|
|
24
|
+
"dist/"
|
|
25
|
+
],
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@grackle-ai/common": "0.56.3"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@rushstack/heft": "1.2.4",
|
|
31
|
+
"@types/node": "^22.0.0",
|
|
32
|
+
"vitest": "^3.1.1",
|
|
33
|
+
"@grackle-ai/heft-rig": "0.0.1"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "heft build --clean",
|
|
37
|
+
"test": "vitest run",
|
|
38
|
+
"clean": "heft clean",
|
|
39
|
+
"_phase:build": "heft run --only build -- --clean",
|
|
40
|
+
"_phase:test": "vitest run"
|
|
41
|
+
}
|
|
42
|
+
}
|