@absolutejs/rag 0.0.22 → 0.0.24
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/LICENSE +88 -0
- package/dist/index.js +22 -3
- package/dist/index.js.map +4 -4
- package/dist/src/adapters/postgres.d.ts +1 -0
- package/dist/src/adapters/sqlite.d.ts +1 -0
- package/package.json +12 -10
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { createPostgresRAGStore } from "@absolutejs/rag-postgres";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { createSQLiteRAGStore } from "@absolutejs/rag-sqlite";
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@absolutejs/rag",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Standalone RAG ingestion, sync, retrieval, evaluation, clients, and framework adapters extracted from AbsoluteJS",
|
|
3
|
+
"version": "0.0.24",
|
|
5
4
|
"license": "BSL-1.1",
|
|
5
|
+
"description": "Standalone RAG ingestion, sync, retrieval, evaluation, clients, and framework adapters extracted from AbsoluteJS",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"types": "./dist/src/index.d.ts",
|
|
@@ -80,22 +80,24 @@
|
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"@absolutejs/absolute": "^0.19.0-beta.1051",
|
|
83
|
+
"@absolutejs/rag-postgres": "0.0.6",
|
|
84
|
+
"@absolutejs/rag-sqlite": "0.0.6",
|
|
83
85
|
"@angular/core": "^21.0.0",
|
|
86
|
+
"@eslint/js": "^10.0.1",
|
|
84
87
|
"@types/bun": "1.3.9",
|
|
85
88
|
"@types/react": "19.2.0",
|
|
86
89
|
"elysia": "1.4.18",
|
|
87
|
-
"react": "19.2.1",
|
|
88
|
-
"svelte": "5.55.0",
|
|
89
|
-
"typescript": "^5.9.3",
|
|
90
|
-
"vue": "3.5.27",
|
|
91
|
-
"@eslint/js": "^10.0.1",
|
|
92
90
|
"eslint": "^10.0.3",
|
|
91
|
+
"eslint-plugin-absolute": "^0.2.6",
|
|
92
|
+
"eslint-plugin-promise": "^7.2.1",
|
|
93
93
|
"globals": "^17.4.0",
|
|
94
94
|
"prettier": "^3.5.3",
|
|
95
|
+
"react": "19.2.1",
|
|
96
|
+
"react-dom": "19.2.1",
|
|
97
|
+
"svelte": "5.55.0",
|
|
98
|
+
"typescript": "^5.9.3",
|
|
95
99
|
"typescript-eslint": "^8.56.1",
|
|
96
|
-
"
|
|
97
|
-
"eslint-plugin-promise": "^7.2.1",
|
|
98
|
-
"react-dom": "19.2.1"
|
|
100
|
+
"vue": "3.5.27"
|
|
99
101
|
},
|
|
100
102
|
"scripts": {
|
|
101
103
|
"build": "bun run scripts/build.ts",
|