@voltx/rag 0.4.6 → 0.4.7

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 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.6";
315
+ declare const VERSION = "0.4.7";
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.6";
315
+ declare const VERSION = "0.4.7";
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.6";
554
+ var VERSION = "0.4.7";
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
@@ -513,7 +513,7 @@ ${s.content}`).join("\n\n---\n\n");
513
513
  function createRAGPipeline(config) {
514
514
  return new RAGPipeline(config);
515
515
  }
516
- var VERSION = "0.4.6";
516
+ var VERSION = "0.4.7";
517
517
  export {
518
518
  CharacterSplitter,
519
519
  JSONLoader,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voltx/rag",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
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.6",
18
- "@voltx/db": "^0.4.6"
17
+ "@voltx/ai": "^0.4.7",
18
+ "@voltx/db": "^0.4.7"
19
19
  },
20
20
  "devDependencies": {
21
21
  "tsup": "^8.0.0",