@voltx/rag 0.4.4 → 0.4.5
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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -312,6 +312,6 @@ declare class RAGPipeline {
|
|
|
312
312
|
* ```
|
|
313
313
|
*/
|
|
314
314
|
declare function createRAGPipeline(config: RAGPipelineConfig): RAGPipeline;
|
|
315
|
-
declare const VERSION = "0.4.
|
|
315
|
+
declare const VERSION = "0.4.5";
|
|
316
316
|
|
|
317
317
|
export { CharacterSplitter, type CharacterSplitterOptions, type ChunkOptions, type ChunkStrategy, type DocumentChunk, type DocumentLoader, type Embedder, type EmbedderConfig, JSONLoader, type JSONLoaderOptions, MDocument, MarkdownLoader, MarkdownSplitter, type MarkdownSplitterOptions, type RAGIngestResult, RAGPipeline, type RAGPipelineConfig, type RAGQueryOptions, type RAGQueryResult, type RecursiveSplitterOptions, RecursiveTextSplitter, TextLoader, type TextSplitter, VERSION, WebLoader, cosineSimilarity, createEmbedder, createRAGPipeline };
|
package/dist/index.d.ts
CHANGED
|
@@ -312,6 +312,6 @@ declare class RAGPipeline {
|
|
|
312
312
|
* ```
|
|
313
313
|
*/
|
|
314
314
|
declare function createRAGPipeline(config: RAGPipelineConfig): RAGPipeline;
|
|
315
|
-
declare const VERSION = "0.4.
|
|
315
|
+
declare const VERSION = "0.4.5";
|
|
316
316
|
|
|
317
317
|
export { CharacterSplitter, type CharacterSplitterOptions, type ChunkOptions, type ChunkStrategy, type DocumentChunk, type DocumentLoader, type Embedder, type EmbedderConfig, JSONLoader, type JSONLoaderOptions, MDocument, MarkdownLoader, MarkdownSplitter, type MarkdownSplitterOptions, type RAGIngestResult, RAGPipeline, type RAGPipelineConfig, type RAGQueryOptions, type RAGQueryResult, type RecursiveSplitterOptions, RecursiveTextSplitter, TextLoader, type TextSplitter, VERSION, WebLoader, cosineSimilarity, createEmbedder, createRAGPipeline };
|
package/dist/index.js
CHANGED
|
@@ -551,7 +551,7 @@ ${s.content}`).join("\n\n---\n\n");
|
|
|
551
551
|
function createRAGPipeline(config) {
|
|
552
552
|
return new RAGPipeline(config);
|
|
553
553
|
}
|
|
554
|
-
var VERSION = "0.4.
|
|
554
|
+
var VERSION = "0.4.5";
|
|
555
555
|
// Annotate the CommonJS export names for ESM import in node:
|
|
556
556
|
0 && (module.exports = {
|
|
557
557
|
CharacterSplitter,
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voltx/rag",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "VoltX RAG pipeline primitives — document loading, chunking, embedding, retrieval",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@voltx/ai": "^0.4.
|
|
18
|
-
"@voltx/db": "^0.4.
|
|
17
|
+
"@voltx/ai": "^0.4.5",
|
|
18
|
+
"@voltx/db": "^0.4.5"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"tsup": "^8.0.0",
|