@vectororm/core 0.1.0 → 0.1.2
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/README.md +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@vectororm/core)
|
|
4
4
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
5
5
|
|
|
6
|
-
Core package for [
|
|
6
|
+
Core package for [VectorORM](https://github.com/aviramroi/VectorORM) — a TypeScript-first vector ORM with Vertical and Horizontal RAG.
|
|
7
7
|
|
|
8
8
|
Includes the abstract adapter base class, universal filter language, metadata builders, ingestion pipeline, enrichment pipeline, query composition layer, and the unified RAGClient facade.
|
|
9
9
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Represents a vector record in the database.
|
|
3
3
|
*
|
|
4
|
-
* This is the fundamental unit of storage in
|
|
4
|
+
* This is the fundamental unit of storage in VectorORM, containing:
|
|
5
5
|
* - Unique identifier
|
|
6
6
|
* - Embedding vector
|
|
7
7
|
* - Metadata (including V/H/S fields)
|
|
@@ -39,7 +39,7 @@ interface SearchResult {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
|
-
* Metadata field prefixes for the three axes of
|
|
42
|
+
* Metadata field prefixes for the three axes of VectorORM's schema.
|
|
43
43
|
*
|
|
44
44
|
* These prefixes separate framework fields from user-defined metadata:
|
|
45
45
|
* - __v_: Vertical axis (document identity)
|
|
@@ -449,7 +449,7 @@ declare abstract class VectorDBAdapter {
|
|
|
449
449
|
/**
|
|
450
450
|
* Query Composition Layer - Retrieval Types and Interfaces
|
|
451
451
|
*
|
|
452
|
-
* Defines the core interfaces for retrieval operations in
|
|
452
|
+
* Defines the core interfaces for retrieval operations in VectorORM.
|
|
453
453
|
* These types abstract query parameters and results across different
|
|
454
454
|
* vector database adapters.
|
|
455
455
|
*/
|
|
@@ -2421,7 +2421,7 @@ interface RAGResponse {
|
|
|
2421
2421
|
}
|
|
2422
2422
|
|
|
2423
2423
|
/**
|
|
2424
|
-
* RAGClient - Unified facade for all
|
|
2424
|
+
* RAGClient - Unified facade for all VectorORM operations.
|
|
2425
2425
|
*
|
|
2426
2426
|
* Ties together adapter, embedder, LLM, ingestion, enrichment, and query
|
|
2427
2427
|
* into a single developer-facing API.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Represents a vector record in the database.
|
|
3
3
|
*
|
|
4
|
-
* This is the fundamental unit of storage in
|
|
4
|
+
* This is the fundamental unit of storage in VectorORM, containing:
|
|
5
5
|
* - Unique identifier
|
|
6
6
|
* - Embedding vector
|
|
7
7
|
* - Metadata (including V/H/S fields)
|
|
@@ -39,7 +39,7 @@ interface SearchResult {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
|
-
* Metadata field prefixes for the three axes of
|
|
42
|
+
* Metadata field prefixes for the three axes of VectorORM's schema.
|
|
43
43
|
*
|
|
44
44
|
* These prefixes separate framework fields from user-defined metadata:
|
|
45
45
|
* - __v_: Vertical axis (document identity)
|
|
@@ -449,7 +449,7 @@ declare abstract class VectorDBAdapter {
|
|
|
449
449
|
/**
|
|
450
450
|
* Query Composition Layer - Retrieval Types and Interfaces
|
|
451
451
|
*
|
|
452
|
-
* Defines the core interfaces for retrieval operations in
|
|
452
|
+
* Defines the core interfaces for retrieval operations in VectorORM.
|
|
453
453
|
* These types abstract query parameters and results across different
|
|
454
454
|
* vector database adapters.
|
|
455
455
|
*/
|
|
@@ -2421,7 +2421,7 @@ interface RAGResponse {
|
|
|
2421
2421
|
}
|
|
2422
2422
|
|
|
2423
2423
|
/**
|
|
2424
|
-
* RAGClient - Unified facade for all
|
|
2424
|
+
* RAGClient - Unified facade for all VectorORM operations.
|
|
2425
2425
|
*
|
|
2426
2426
|
* Ties together adapter, embedder, LLM, ingestion, enrichment, and query
|
|
2427
2427
|
* into a single developer-facing API.
|