@undefineds.co/xpod 0.3.69 → 0.3.70
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/config/cloud.json +1 -29
- package/dist/components/context.jsonld +6 -0
- package/dist/storage/rdf/PostgresRdfEngine.js +2 -0
- package/dist/storage/rdf/PostgresRdfEngine.js.map +1 -1
- package/dist/storage/rdf/PostgresRdfVectorIndex.d.ts +1 -0
- package/dist/storage/rdf/PostgresRdfVectorIndex.js +1 -1
- package/dist/storage/rdf/PostgresRdfVectorIndex.js.map +1 -1
- package/dist/storage/rdf/PostgresRdfVectorIndex.jsonld +29 -0
- package/package.json +1 -1
package/config/cloud.json
CHANGED
|
@@ -184,6 +184,7 @@
|
|
|
184
184
|
"@id": "urn:undefineds:xpod:PostgresRdfVectorIndex",
|
|
185
185
|
"@type": "PostgresRdfVectorIndex",
|
|
186
186
|
"options_driver": "pg",
|
|
187
|
+
"options_backend": "component",
|
|
187
188
|
"options_connectionString": {
|
|
188
189
|
"@id": "urn:solid-server:default:variable:sparqlEndpoint",
|
|
189
190
|
"@type": "Variable"
|
|
@@ -227,32 +228,6 @@
|
|
|
227
228
|
},
|
|
228
229
|
"enablePrimary": true
|
|
229
230
|
},
|
|
230
|
-
{
|
|
231
|
-
"comment": "VectorStore using PostgreSQL",
|
|
232
|
-
"@id": "urn:undefineds:xpod:VectorStore",
|
|
233
|
-
"@type": "PostgresVectorStore",
|
|
234
|
-
"options_connectionString": {
|
|
235
|
-
"@id": "urn:solid-server:default:variable:sparqlEndpoint",
|
|
236
|
-
"@type": "Variable"
|
|
237
|
-
}
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
"comment": "Vector HTTP Handler",
|
|
241
|
-
"@id": "urn:undefineds:xpod:VectorHttpHandler",
|
|
242
|
-
"@type": "VectorHttpHandler",
|
|
243
|
-
"vectorStore": {
|
|
244
|
-
"@id": "urn:undefineds:xpod:VectorStore"
|
|
245
|
-
},
|
|
246
|
-
"credentialsExtractor": {
|
|
247
|
-
"@id": "urn:solid-server:default:CredentialsExtractor"
|
|
248
|
-
},
|
|
249
|
-
"permissionReader": {
|
|
250
|
-
"@id": "urn:solid-server:default:PermissionReader"
|
|
251
|
-
},
|
|
252
|
-
"authorizer": {
|
|
253
|
-
"@id": "urn:solid-server:default:Authorizer"
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
231
|
{
|
|
257
232
|
"comment": "Terminal Sidecar HTTP Handler - manages PTY sessions for trusted AI agents",
|
|
258
233
|
"@id": "urn:undefineds:xpod:TerminalHttpHandler",
|
|
@@ -560,9 +535,6 @@
|
|
|
560
535
|
{
|
|
561
536
|
"@id": "urn:undefineds:xpod:SubgraphSparqlHttpHandler"
|
|
562
537
|
},
|
|
563
|
-
{
|
|
564
|
-
"@id": "urn:undefineds:xpod:VectorHttpHandler"
|
|
565
|
-
},
|
|
566
538
|
{
|
|
567
539
|
"@id": "urn:undefineds:xpod:TerminalHttpHandler"
|
|
568
540
|
},
|
|
@@ -555,6 +555,9 @@
|
|
|
555
555
|
"options_driver": {
|
|
556
556
|
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_driver"
|
|
557
557
|
},
|
|
558
|
+
"options_backend": {
|
|
559
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_backend"
|
|
560
|
+
},
|
|
558
561
|
"options_dataDir": {
|
|
559
562
|
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_dataDir"
|
|
560
563
|
},
|
|
@@ -588,6 +591,9 @@
|
|
|
588
591
|
"driver": {
|
|
589
592
|
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_driver"
|
|
590
593
|
},
|
|
594
|
+
"backend": {
|
|
595
|
+
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_backend"
|
|
596
|
+
},
|
|
591
597
|
"dataDir": {
|
|
592
598
|
"@id": "undefineds:dist/storage/rdf/PostgresRdfVectorIndex.jsonld#PostgresRdfVectorIndex_options_dataDir"
|
|
593
599
|
},
|
|
@@ -11834,6 +11834,8 @@ function isPostgresRdfVectorIndexOptions(input) {
|
|
|
11834
11834
|
|| typeof options.database === 'string'
|
|
11835
11835
|
|| typeof options.user === 'string'
|
|
11836
11836
|
|| typeof options.password === 'string'
|
|
11837
|
+
|| options.backend === 'pgvector'
|
|
11838
|
+
|| options.backend === 'component'
|
|
11837
11839
|
|| options.pool !== undefined
|
|
11838
11840
|
|| typeof options.autoOpen === 'boolean';
|
|
11839
11841
|
}
|