@mastra/rag 0.0.0-commonjs-20250227130920
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/.turbo/turbo-build.log +23 -0
- package/CHANGELOG.md +1151 -0
- package/LICENSE +44 -0
- package/README.md +26 -0
- package/dist/_tsup-dts-rollup.d.cts +620 -0
- package/dist/_tsup-dts-rollup.d.ts +620 -0
- package/dist/index.cjs +2524 -0
- package/dist/index.d.cts +22 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +2505 -0
- package/docker-compose.yaml +22 -0
- package/eslint.config.js +6 -0
- package/package.json +72 -0
- package/src/document/document.test.ts +985 -0
- package/src/document/document.ts +281 -0
- package/src/document/index.ts +2 -0
- package/src/document/transformers/character.ts +279 -0
- package/src/document/transformers/html.ts +346 -0
- package/src/document/transformers/json.ts +265 -0
- package/src/document/transformers/latex.ts +19 -0
- package/src/document/transformers/markdown.ts +244 -0
- package/src/document/transformers/text.ts +134 -0
- package/src/document/transformers/token.ts +148 -0
- package/src/document/transformers/transformer.ts +5 -0
- package/src/document/types.ts +103 -0
- package/src/graph-rag/index.test.ts +235 -0
- package/src/graph-rag/index.ts +306 -0
- package/src/index.ts +6 -0
- package/src/rerank/index.test.ts +150 -0
- package/src/rerank/index.ts +154 -0
- package/src/tools/document-chunker.ts +30 -0
- package/src/tools/graph-rag.ts +117 -0
- package/src/tools/index.ts +3 -0
- package/src/tools/vector-query.ts +90 -0
- package/src/utils/default-settings.ts +33 -0
- package/src/utils/index.ts +2 -0
- package/src/utils/vector-prompts.ts +729 -0
- package/src/utils/vector-search.ts +41 -0
- package/tsconfig.json +5 -0
- package/vitest.config.ts +11 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1151 @@
|
|
|
1
|
+
# @mastra/rag
|
|
2
|
+
|
|
3
|
+
## 0.0.0-commonjs-20250227130920
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4a712fc: Add support for commonjs
|
|
8
|
+
- Updated dependencies [ed55f1d]
|
|
9
|
+
- Updated dependencies [06aa827]
|
|
10
|
+
- Updated dependencies [8d13b14]
|
|
11
|
+
- Updated dependencies [4a712fc]
|
|
12
|
+
- Updated dependencies [108793c]
|
|
13
|
+
- Updated dependencies [5f28f44]
|
|
14
|
+
- @mastra/core@0.0.0-commonjs-20250227130920
|
|
15
|
+
|
|
16
|
+
## 0.1.6-alpha.0
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [06aa827]
|
|
21
|
+
- @mastra/core@0.4.3-alpha.0
|
|
22
|
+
|
|
23
|
+
## 0.1.5
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [7fceae1]
|
|
28
|
+
- Updated dependencies [8d94c3e]
|
|
29
|
+
- Updated dependencies [99dcdb5]
|
|
30
|
+
- Updated dependencies [6cb63e0]
|
|
31
|
+
- Updated dependencies [f626fbb]
|
|
32
|
+
- Updated dependencies [e752340]
|
|
33
|
+
- Updated dependencies [eb91535]
|
|
34
|
+
- @mastra/core@0.4.2
|
|
35
|
+
|
|
36
|
+
## 0.1.5-alpha.2
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- Updated dependencies [8d94c3e]
|
|
41
|
+
- Updated dependencies [99dcdb5]
|
|
42
|
+
- Updated dependencies [e752340]
|
|
43
|
+
- Updated dependencies [eb91535]
|
|
44
|
+
- @mastra/core@0.4.2-alpha.2
|
|
45
|
+
|
|
46
|
+
## 0.1.5-alpha.1
|
|
47
|
+
|
|
48
|
+
### Patch Changes
|
|
49
|
+
|
|
50
|
+
- Updated dependencies [6cb63e0]
|
|
51
|
+
- @mastra/core@0.4.2-alpha.1
|
|
52
|
+
|
|
53
|
+
## 0.1.5-alpha.0
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- Updated dependencies [7fceae1]
|
|
58
|
+
- Updated dependencies [f626fbb]
|
|
59
|
+
- @mastra/core@0.4.2-alpha.0
|
|
60
|
+
|
|
61
|
+
## 0.1.4
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- Updated dependencies [ce44b9b]
|
|
66
|
+
- Updated dependencies [967da43]
|
|
67
|
+
- Updated dependencies [b405f08]
|
|
68
|
+
- @mastra/core@0.4.1
|
|
69
|
+
|
|
70
|
+
## 0.1.3
|
|
71
|
+
|
|
72
|
+
### Patch Changes
|
|
73
|
+
|
|
74
|
+
- Updated dependencies [2fc618f]
|
|
75
|
+
- Updated dependencies [fe0fd01]
|
|
76
|
+
- @mastra/core@0.4.0
|
|
77
|
+
|
|
78
|
+
## 0.1.3-alpha.1
|
|
79
|
+
|
|
80
|
+
### Patch Changes
|
|
81
|
+
|
|
82
|
+
- Updated dependencies [fe0fd01]
|
|
83
|
+
- @mastra/core@0.4.0-alpha.1
|
|
84
|
+
|
|
85
|
+
## 0.1.3-alpha.0
|
|
86
|
+
|
|
87
|
+
### Patch Changes
|
|
88
|
+
|
|
89
|
+
- Updated dependencies [2fc618f]
|
|
90
|
+
- @mastra/core@0.4.0-alpha.0
|
|
91
|
+
|
|
92
|
+
## 0.1.2
|
|
93
|
+
|
|
94
|
+
### Patch Changes
|
|
95
|
+
|
|
96
|
+
- Updated dependencies [f205ede]
|
|
97
|
+
- @mastra/core@0.3.0
|
|
98
|
+
|
|
99
|
+
## 0.1.1
|
|
100
|
+
|
|
101
|
+
### Patch Changes
|
|
102
|
+
|
|
103
|
+
- 91ef439: Add eslint and ran autofix
|
|
104
|
+
- Updated dependencies [d59f1a8]
|
|
105
|
+
- Updated dependencies [91ef439]
|
|
106
|
+
- Updated dependencies [4a25be4]
|
|
107
|
+
- Updated dependencies [bf2e88f]
|
|
108
|
+
- Updated dependencies [2f0d707]
|
|
109
|
+
- Updated dependencies [aac1667]
|
|
110
|
+
- @mastra/core@0.2.1
|
|
111
|
+
|
|
112
|
+
## 0.1.1-alpha.0
|
|
113
|
+
|
|
114
|
+
### Patch Changes
|
|
115
|
+
|
|
116
|
+
- 91ef439: Add eslint and ran autofix
|
|
117
|
+
- Updated dependencies [d59f1a8]
|
|
118
|
+
- Updated dependencies [91ef439]
|
|
119
|
+
- Updated dependencies [4a25be4]
|
|
120
|
+
- Updated dependencies [bf2e88f]
|
|
121
|
+
- Updated dependencies [2f0d707]
|
|
122
|
+
- Updated dependencies [aac1667]
|
|
123
|
+
- @mastra/core@0.2.1-alpha.0
|
|
124
|
+
|
|
125
|
+
## 0.1.0
|
|
126
|
+
|
|
127
|
+
### Minor Changes
|
|
128
|
+
|
|
129
|
+
- 5916f9d: Update deps from fixed to ^
|
|
130
|
+
- 8b416d9: Breaking changes
|
|
131
|
+
|
|
132
|
+
### Patch Changes
|
|
133
|
+
|
|
134
|
+
- b27bdb8: Swap jsdon for node-html-parser in rag
|
|
135
|
+
- ee856f3: Updated pg filter function and updated docs and example
|
|
136
|
+
- f646a8b: Update rag deps
|
|
137
|
+
- f031a1f: expose embed from rag, and refactor embed
|
|
138
|
+
- 592e3cf: Add custom rag tools, add vector retrieval, and update docs
|
|
139
|
+
- 3967e69: Added GraphRAG implementation and updated docs
|
|
140
|
+
- 8ae2bbc: Dane publishing
|
|
141
|
+
- bdaf834: publish packages
|
|
142
|
+
- 1616f70: Added transaction handling to pgvector
|
|
143
|
+
- e1dd94a: update the api for embeddings
|
|
144
|
+
- 837a288: MAJOR Revamp of tools, workflows, syncs.
|
|
145
|
+
- 685108a: Remove syncs and excess rag
|
|
146
|
+
- b97ca96: Tracing into default storage
|
|
147
|
+
- 033eda6: More fixes for refactor
|
|
148
|
+
- 8105fae: Split embed into embed and embedMany to handle different return types
|
|
149
|
+
- ab1dc59: Add Cloudflare vectorize
|
|
150
|
+
- a621c34: Add validation for indexName in pgVector and dimension for all vector dbs
|
|
151
|
+
- 1944807: Unified logger and major step in better logs
|
|
152
|
+
- 1874f40: Added re ranking tool to RAG
|
|
153
|
+
- 0b74006: Workflow updates
|
|
154
|
+
- 9c10484: update all packages
|
|
155
|
+
- 70dabd9: Fix broken publish
|
|
156
|
+
- 45fd5b8: rename MastraDocument to MDocument
|
|
157
|
+
- 21fe536: add keyword tags for packages and update readmes
|
|
158
|
+
- 779702b: Upstash vector
|
|
159
|
+
- ae638a4: make useFilter option optional
|
|
160
|
+
- 0bd142c: Fixes learned from docs
|
|
161
|
+
- 9625602: Use mastra core splitted bundles in other packages
|
|
162
|
+
- 036ee5e: Add astra-db to rag
|
|
163
|
+
- 1c3232a: ChromaDB
|
|
164
|
+
- 24fe87e: Change document semantics
|
|
165
|
+
- a944f1a: Bundle @mastra/rag package with tsup
|
|
166
|
+
- a10b7a3: Implemented new filtering for vectorQueryTool and updated docs
|
|
167
|
+
- 5826db3: Updated reference docs and exports for Reranker and GraphRag
|
|
168
|
+
- 5811de6: Updates spec-writer example to use new workflows constructs. Small improvements to workflow internals. Switch transformer tokenizer for js compatible one.
|
|
169
|
+
- eb45d76: Updated PG Vector filter and added rag examples in docs
|
|
170
|
+
- 327ece7: Updates for ts versions
|
|
171
|
+
- 6101f2d: Fix module incompatibility, and dane cli build
|
|
172
|
+
- 9c0d010: Deprecated Reranker in favor of rerank function (BREAKING CHANGE)
|
|
173
|
+
- ecdee97: Update return type for chunk to Chunk[]
|
|
174
|
+
- 7de6d71: Update filter for vector query to work with more stores
|
|
175
|
+
- c3047a7: Added tests
|
|
176
|
+
- 4f1d1a1: Enforce types ann cleanup package.json
|
|
177
|
+
- 4769753: Added turso/libsql support for RAG
|
|
178
|
+
- ee4de15: Dane fixes
|
|
179
|
+
- Updated dependencies [f537e33]
|
|
180
|
+
- Updated dependencies [6f2c0f5]
|
|
181
|
+
- Updated dependencies [e4d4ede]
|
|
182
|
+
- Updated dependencies [0be7181]
|
|
183
|
+
- Updated dependencies [dd6d87f]
|
|
184
|
+
- Updated dependencies [9029796]
|
|
185
|
+
- Updated dependencies [6fa4bd2]
|
|
186
|
+
- Updated dependencies [f031a1f]
|
|
187
|
+
- Updated dependencies [8151f44]
|
|
188
|
+
- Updated dependencies [d7d465a]
|
|
189
|
+
- Updated dependencies [4d4f6b6]
|
|
190
|
+
- Updated dependencies [73d112c]
|
|
191
|
+
- Updated dependencies [592e3cf]
|
|
192
|
+
- Updated dependencies [9d1796d]
|
|
193
|
+
- Updated dependencies [e897f1c]
|
|
194
|
+
- Updated dependencies [4a54c82]
|
|
195
|
+
- Updated dependencies [3967e69]
|
|
196
|
+
- Updated dependencies [8ae2bbc]
|
|
197
|
+
- Updated dependencies [e9d1b47]
|
|
198
|
+
- Updated dependencies [016493a]
|
|
199
|
+
- Updated dependencies [bc40916]
|
|
200
|
+
- Updated dependencies [93a3719]
|
|
201
|
+
- Updated dependencies [7d83b92]
|
|
202
|
+
- Updated dependencies [9fb3039]
|
|
203
|
+
- Updated dependencies [d5e12de]
|
|
204
|
+
- Updated dependencies [e1dd94a]
|
|
205
|
+
- Updated dependencies [07c069d]
|
|
206
|
+
- Updated dependencies [5cdfb88]
|
|
207
|
+
- Updated dependencies [837a288]
|
|
208
|
+
- Updated dependencies [685108a]
|
|
209
|
+
- Updated dependencies [c8ff2f5]
|
|
210
|
+
- Updated dependencies [5fdc87c]
|
|
211
|
+
- Updated dependencies [ae7bf94]
|
|
212
|
+
- Updated dependencies [8e7814f]
|
|
213
|
+
- Updated dependencies [66a03ec]
|
|
214
|
+
- Updated dependencies [7d87a15]
|
|
215
|
+
- Updated dependencies [b97ca96]
|
|
216
|
+
- Updated dependencies [23dcb23]
|
|
217
|
+
- Updated dependencies [033eda6]
|
|
218
|
+
- Updated dependencies [8105fae]
|
|
219
|
+
- Updated dependencies [e097800]
|
|
220
|
+
- Updated dependencies [1944807]
|
|
221
|
+
- Updated dependencies [30322ce]
|
|
222
|
+
- Updated dependencies [1874f40]
|
|
223
|
+
- Updated dependencies [685108a]
|
|
224
|
+
- Updated dependencies [f7d1131]
|
|
225
|
+
- Updated dependencies [79acad0]
|
|
226
|
+
- Updated dependencies [7a19083]
|
|
227
|
+
- Updated dependencies [382f4dc]
|
|
228
|
+
- Updated dependencies [1ebd071]
|
|
229
|
+
- Updated dependencies [0b74006]
|
|
230
|
+
- Updated dependencies [2f17a5f]
|
|
231
|
+
- Updated dependencies [f368477]
|
|
232
|
+
- Updated dependencies [7892533]
|
|
233
|
+
- Updated dependencies [9c10484]
|
|
234
|
+
- Updated dependencies [b726bf5]
|
|
235
|
+
- Updated dependencies [70dabd9]
|
|
236
|
+
- Updated dependencies [21fe536]
|
|
237
|
+
- Updated dependencies [176bc42]
|
|
238
|
+
- Updated dependencies [401a4d9]
|
|
239
|
+
- Updated dependencies [2e099d2]
|
|
240
|
+
- Updated dependencies [0b826f6]
|
|
241
|
+
- Updated dependencies [d68b532]
|
|
242
|
+
- Updated dependencies [75bf3f0]
|
|
243
|
+
- Updated dependencies [e6d8055]
|
|
244
|
+
- Updated dependencies [e2e76de]
|
|
245
|
+
- Updated dependencies [ccbc581]
|
|
246
|
+
- Updated dependencies [5950de5]
|
|
247
|
+
- Updated dependencies [fe3dcb0]
|
|
248
|
+
- Updated dependencies [78eec7c]
|
|
249
|
+
- Updated dependencies [a8a459a]
|
|
250
|
+
- Updated dependencies [0be7181]
|
|
251
|
+
- Updated dependencies [7b87567]
|
|
252
|
+
- Updated dependencies [b524c22]
|
|
253
|
+
- Updated dependencies [d7d465a]
|
|
254
|
+
- Updated dependencies [df843d3]
|
|
255
|
+
- Updated dependencies [4534e77]
|
|
256
|
+
- Updated dependencies [d6d8159]
|
|
257
|
+
- Updated dependencies [0bd142c]
|
|
258
|
+
- Updated dependencies [9625602]
|
|
259
|
+
- Updated dependencies [72d1990]
|
|
260
|
+
- Updated dependencies [f6ba259]
|
|
261
|
+
- Updated dependencies [2712098]
|
|
262
|
+
- Updated dependencies [eedb829]
|
|
263
|
+
- Updated dependencies [5285356]
|
|
264
|
+
- Updated dependencies [74b3078]
|
|
265
|
+
- Updated dependencies [cb290ee]
|
|
266
|
+
- Updated dependencies [b4d7416]
|
|
267
|
+
- Updated dependencies [e608d8c]
|
|
268
|
+
- Updated dependencies [06b2c0a]
|
|
269
|
+
- Updated dependencies [002d6d8]
|
|
270
|
+
- Updated dependencies [e448a26]
|
|
271
|
+
- Updated dependencies [8b416d9]
|
|
272
|
+
- Updated dependencies [fd494a3]
|
|
273
|
+
- Updated dependencies [dc90663]
|
|
274
|
+
- Updated dependencies [c872875]
|
|
275
|
+
- Updated dependencies [3c4488b]
|
|
276
|
+
- Updated dependencies [a7b016d]
|
|
277
|
+
- Updated dependencies [fd75f3c]
|
|
278
|
+
- Updated dependencies [7f24c29]
|
|
279
|
+
- Updated dependencies [2017553]
|
|
280
|
+
- Updated dependencies [a10b7a3]
|
|
281
|
+
- Updated dependencies [cf6d825]
|
|
282
|
+
- Updated dependencies [963c15a]
|
|
283
|
+
- Updated dependencies [7365b6c]
|
|
284
|
+
- Updated dependencies [5ee67d3]
|
|
285
|
+
- Updated dependencies [d38f7a6]
|
|
286
|
+
- Updated dependencies [38b7f66]
|
|
287
|
+
- Updated dependencies [2fa7f53]
|
|
288
|
+
- Updated dependencies [1420ae2]
|
|
289
|
+
- Updated dependencies [f6da688]
|
|
290
|
+
- Updated dependencies [3700be1]
|
|
291
|
+
- Updated dependencies [9ade36e]
|
|
292
|
+
- Updated dependencies [10870bc]
|
|
293
|
+
- Updated dependencies [2b01511]
|
|
294
|
+
- Updated dependencies [a870123]
|
|
295
|
+
- Updated dependencies [ccf115c]
|
|
296
|
+
- Updated dependencies [04434b6]
|
|
297
|
+
- Updated dependencies [5811de6]
|
|
298
|
+
- Updated dependencies [9f3ab05]
|
|
299
|
+
- Updated dependencies [66a5392]
|
|
300
|
+
- Updated dependencies [4b1ce2c]
|
|
301
|
+
- Updated dependencies [14064f2]
|
|
302
|
+
- Updated dependencies [f5dfa20]
|
|
303
|
+
- Updated dependencies [327ece7]
|
|
304
|
+
- Updated dependencies [da2e8d3]
|
|
305
|
+
- Updated dependencies [95a4697]
|
|
306
|
+
- Updated dependencies [d5fccfb]
|
|
307
|
+
- Updated dependencies [3427b95]
|
|
308
|
+
- Updated dependencies [538a136]
|
|
309
|
+
- Updated dependencies [e66643a]
|
|
310
|
+
- Updated dependencies [b5393f1]
|
|
311
|
+
- Updated dependencies [d2cd535]
|
|
312
|
+
- Updated dependencies [c2dd6b5]
|
|
313
|
+
- Updated dependencies [67637ba]
|
|
314
|
+
- Updated dependencies [836f4e3]
|
|
315
|
+
- Updated dependencies [5ee2e78]
|
|
316
|
+
- Updated dependencies [cd02c56]
|
|
317
|
+
- Updated dependencies [01502b0]
|
|
318
|
+
- Updated dependencies [16e5b04]
|
|
319
|
+
- Updated dependencies [d9c8dd0]
|
|
320
|
+
- Updated dependencies [9fb59d6]
|
|
321
|
+
- Updated dependencies [a9345f9]
|
|
322
|
+
- Updated dependencies [99f1847]
|
|
323
|
+
- Updated dependencies [04f3171]
|
|
324
|
+
- Updated dependencies [8769a62]
|
|
325
|
+
- Updated dependencies [d5ec619]
|
|
326
|
+
- Updated dependencies [27275c9]
|
|
327
|
+
- Updated dependencies [ae7bf94]
|
|
328
|
+
- Updated dependencies [4f1d1a1]
|
|
329
|
+
- Updated dependencies [ee4de15]
|
|
330
|
+
- Updated dependencies [202d404]
|
|
331
|
+
- Updated dependencies [a221426]
|
|
332
|
+
- @mastra/core@0.2.0
|
|
333
|
+
|
|
334
|
+
## 0.1.0-alpha.103
|
|
335
|
+
|
|
336
|
+
### Patch Changes
|
|
337
|
+
|
|
338
|
+
- Updated dependencies [016493a]
|
|
339
|
+
- Updated dependencies [382f4dc]
|
|
340
|
+
- Updated dependencies [176bc42]
|
|
341
|
+
- Updated dependencies [d68b532]
|
|
342
|
+
- Updated dependencies [fe3dcb0]
|
|
343
|
+
- Updated dependencies [e448a26]
|
|
344
|
+
- Updated dependencies [fd75f3c]
|
|
345
|
+
- Updated dependencies [ccf115c]
|
|
346
|
+
- Updated dependencies [a221426]
|
|
347
|
+
- @mastra/core@0.2.0-alpha.110
|
|
348
|
+
|
|
349
|
+
## 0.1.0-alpha.102
|
|
350
|
+
|
|
351
|
+
### Patch Changes
|
|
352
|
+
|
|
353
|
+
- Updated dependencies [d5fccfb]
|
|
354
|
+
- @mastra/core@0.2.0-alpha.109
|
|
355
|
+
|
|
356
|
+
## 0.1.0-alpha.101
|
|
357
|
+
|
|
358
|
+
### Patch Changes
|
|
359
|
+
|
|
360
|
+
- Updated dependencies [5ee67d3]
|
|
361
|
+
- Updated dependencies [95a4697]
|
|
362
|
+
- @mastra/core@0.2.0-alpha.108
|
|
363
|
+
|
|
364
|
+
## 0.1.0-alpha.100
|
|
365
|
+
|
|
366
|
+
### Patch Changes
|
|
367
|
+
|
|
368
|
+
- Updated dependencies [66a5392]
|
|
369
|
+
- @mastra/core@0.2.0-alpha.107
|
|
370
|
+
|
|
371
|
+
## 0.1.0-alpha.99
|
|
372
|
+
|
|
373
|
+
### Patch Changes
|
|
374
|
+
|
|
375
|
+
- Updated dependencies [6f2c0f5]
|
|
376
|
+
- Updated dependencies [a8a459a]
|
|
377
|
+
- @mastra/core@0.2.0-alpha.106
|
|
378
|
+
|
|
379
|
+
## 0.1.0-alpha.98
|
|
380
|
+
|
|
381
|
+
### Patch Changes
|
|
382
|
+
|
|
383
|
+
- Updated dependencies [1420ae2]
|
|
384
|
+
- Updated dependencies [99f1847]
|
|
385
|
+
- @mastra/core@0.2.0-alpha.105
|
|
386
|
+
|
|
387
|
+
## 0.1.0-alpha.97
|
|
388
|
+
|
|
389
|
+
### Patch Changes
|
|
390
|
+
|
|
391
|
+
- b97ca96: Tracing into default storage
|
|
392
|
+
- Updated dependencies [5fdc87c]
|
|
393
|
+
- Updated dependencies [b97ca96]
|
|
394
|
+
- Updated dependencies [72d1990]
|
|
395
|
+
- Updated dependencies [cf6d825]
|
|
396
|
+
- Updated dependencies [10870bc]
|
|
397
|
+
- @mastra/core@0.2.0-alpha.104
|
|
398
|
+
|
|
399
|
+
## 0.1.0-alpha.96
|
|
400
|
+
|
|
401
|
+
### Patch Changes
|
|
402
|
+
|
|
403
|
+
- Updated dependencies [4534e77]
|
|
404
|
+
- @mastra/core@0.2.0-alpha.103
|
|
405
|
+
|
|
406
|
+
## 0.1.0-alpha.95
|
|
407
|
+
|
|
408
|
+
### Patch Changes
|
|
409
|
+
|
|
410
|
+
- Updated dependencies [a9345f9]
|
|
411
|
+
- @mastra/core@0.2.0-alpha.102
|
|
412
|
+
|
|
413
|
+
## 0.1.0-alpha.94
|
|
414
|
+
|
|
415
|
+
### Patch Changes
|
|
416
|
+
|
|
417
|
+
- 4f1d1a1: Enforce types ann cleanup package.json
|
|
418
|
+
- Updated dependencies [66a03ec]
|
|
419
|
+
- Updated dependencies [4f1d1a1]
|
|
420
|
+
- @mastra/core@0.2.0-alpha.101
|
|
421
|
+
|
|
422
|
+
## 0.1.0-alpha.93
|
|
423
|
+
|
|
424
|
+
### Patch Changes
|
|
425
|
+
|
|
426
|
+
- Updated dependencies [9d1796d]
|
|
427
|
+
- @mastra/core@0.2.0-alpha.100
|
|
428
|
+
|
|
429
|
+
## 0.1.0-alpha.92
|
|
430
|
+
|
|
431
|
+
### Patch Changes
|
|
432
|
+
|
|
433
|
+
- Updated dependencies [7d83b92]
|
|
434
|
+
- @mastra/core@0.2.0-alpha.99
|
|
435
|
+
|
|
436
|
+
## 0.1.0-alpha.91
|
|
437
|
+
|
|
438
|
+
### Patch Changes
|
|
439
|
+
|
|
440
|
+
- 70dabd9: Fix broken publish
|
|
441
|
+
- Updated dependencies [70dabd9]
|
|
442
|
+
- Updated dependencies [202d404]
|
|
443
|
+
- @mastra/core@0.2.0-alpha.98
|
|
444
|
+
|
|
445
|
+
## 0.1.0-alpha.90
|
|
446
|
+
|
|
447
|
+
### Patch Changes
|
|
448
|
+
|
|
449
|
+
- Updated dependencies [07c069d]
|
|
450
|
+
- Updated dependencies [7892533]
|
|
451
|
+
- Updated dependencies [e6d8055]
|
|
452
|
+
- Updated dependencies [5950de5]
|
|
453
|
+
- Updated dependencies [df843d3]
|
|
454
|
+
- Updated dependencies [a870123]
|
|
455
|
+
- @mastra/core@0.2.0-alpha.97
|
|
456
|
+
|
|
457
|
+
## 0.1.0-alpha.89
|
|
458
|
+
|
|
459
|
+
### Patch Changes
|
|
460
|
+
|
|
461
|
+
- Updated dependencies [74b3078]
|
|
462
|
+
- @mastra/core@0.2.0-alpha.96
|
|
463
|
+
|
|
464
|
+
## 0.1.0-alpha.88
|
|
465
|
+
|
|
466
|
+
### Patch Changes
|
|
467
|
+
|
|
468
|
+
- Updated dependencies [9fb59d6]
|
|
469
|
+
- @mastra/core@0.2.0-alpha.95
|
|
470
|
+
|
|
471
|
+
## 0.1.0-alpha.87
|
|
472
|
+
|
|
473
|
+
### Minor Changes
|
|
474
|
+
|
|
475
|
+
- 8b416d9: Breaking changes
|
|
476
|
+
|
|
477
|
+
### Patch Changes
|
|
478
|
+
|
|
479
|
+
- 9c10484: update all packages
|
|
480
|
+
- Updated dependencies [9c10484]
|
|
481
|
+
- Updated dependencies [8b416d9]
|
|
482
|
+
- @mastra/core@0.2.0-alpha.94
|
|
483
|
+
|
|
484
|
+
## 0.1.0-alpha.86
|
|
485
|
+
|
|
486
|
+
### Patch Changes
|
|
487
|
+
|
|
488
|
+
- Updated dependencies [5285356]
|
|
489
|
+
- @mastra/core@0.2.0-alpha.93
|
|
490
|
+
|
|
491
|
+
## 0.1.0-alpha.85
|
|
492
|
+
|
|
493
|
+
### Patch Changes
|
|
494
|
+
|
|
495
|
+
- b27bdb8: Swap jsdon for node-html-parser in rag
|
|
496
|
+
|
|
497
|
+
## 0.1.0-alpha.84
|
|
498
|
+
|
|
499
|
+
### Patch Changes
|
|
500
|
+
|
|
501
|
+
- Updated dependencies [4d4f6b6]
|
|
502
|
+
- @mastra/core@0.2.0-alpha.92
|
|
503
|
+
|
|
504
|
+
## 0.1.0-alpha.83
|
|
505
|
+
|
|
506
|
+
### Patch Changes
|
|
507
|
+
|
|
508
|
+
- a10b7a3: Implemented new filtering for vectorQueryTool and updated docs
|
|
509
|
+
- Updated dependencies [d7d465a]
|
|
510
|
+
- Updated dependencies [d7d465a]
|
|
511
|
+
- Updated dependencies [2017553]
|
|
512
|
+
- Updated dependencies [a10b7a3]
|
|
513
|
+
- Updated dependencies [16e5b04]
|
|
514
|
+
- @mastra/core@0.2.0-alpha.91
|
|
515
|
+
|
|
516
|
+
## 0.1.0-alpha.82
|
|
517
|
+
|
|
518
|
+
### Patch Changes
|
|
519
|
+
|
|
520
|
+
- Updated dependencies [8151f44]
|
|
521
|
+
- Updated dependencies [e897f1c]
|
|
522
|
+
- Updated dependencies [3700be1]
|
|
523
|
+
- @mastra/core@0.2.0-alpha.90
|
|
524
|
+
|
|
525
|
+
## 0.1.0-alpha.81
|
|
526
|
+
|
|
527
|
+
### Patch Changes
|
|
528
|
+
|
|
529
|
+
- Updated dependencies [27275c9]
|
|
530
|
+
- @mastra/core@0.2.0-alpha.89
|
|
531
|
+
|
|
532
|
+
## 0.1.0-alpha.80
|
|
533
|
+
|
|
534
|
+
### Patch Changes
|
|
535
|
+
|
|
536
|
+
- Updated dependencies [ccbc581]
|
|
537
|
+
- @mastra/core@0.2.0-alpha.88
|
|
538
|
+
|
|
539
|
+
## 0.1.0-alpha.79
|
|
540
|
+
|
|
541
|
+
### Patch Changes
|
|
542
|
+
|
|
543
|
+
- Updated dependencies [7365b6c]
|
|
544
|
+
- @mastra/core@0.2.0-alpha.87
|
|
545
|
+
|
|
546
|
+
## 0.1.0-alpha.78
|
|
547
|
+
|
|
548
|
+
### Minor Changes
|
|
549
|
+
|
|
550
|
+
- 5916f9d: Update deps from fixed to ^
|
|
551
|
+
|
|
552
|
+
### Patch Changes
|
|
553
|
+
|
|
554
|
+
- Updated dependencies [6fa4bd2]
|
|
555
|
+
- Updated dependencies [e2e76de]
|
|
556
|
+
- Updated dependencies [7f24c29]
|
|
557
|
+
- Updated dependencies [67637ba]
|
|
558
|
+
- Updated dependencies [04f3171]
|
|
559
|
+
- @mastra/core@0.2.0-alpha.86
|
|
560
|
+
|
|
561
|
+
## 0.0.2-alpha.77
|
|
562
|
+
|
|
563
|
+
### Patch Changes
|
|
564
|
+
|
|
565
|
+
- Updated dependencies [e9d1b47]
|
|
566
|
+
- @mastra/core@0.2.0-alpha.85
|
|
567
|
+
|
|
568
|
+
## 0.0.2-alpha.76
|
|
569
|
+
|
|
570
|
+
### Patch Changes
|
|
571
|
+
|
|
572
|
+
- f646a8b: Update rag deps
|
|
573
|
+
|
|
574
|
+
## 0.0.2-alpha.75
|
|
575
|
+
|
|
576
|
+
### Patch Changes
|
|
577
|
+
|
|
578
|
+
- Updated dependencies [2f17a5f]
|
|
579
|
+
- Updated dependencies [cb290ee]
|
|
580
|
+
- Updated dependencies [b4d7416]
|
|
581
|
+
- Updated dependencies [38b7f66]
|
|
582
|
+
- @mastra/core@0.2.0-alpha.84
|
|
583
|
+
|
|
584
|
+
## 0.0.2-alpha.74
|
|
585
|
+
|
|
586
|
+
### Patch Changes
|
|
587
|
+
|
|
588
|
+
- 9625602: Use mastra core splitted bundles in other packages
|
|
589
|
+
- Updated dependencies [30322ce]
|
|
590
|
+
- Updated dependencies [78eec7c]
|
|
591
|
+
- Updated dependencies [9625602]
|
|
592
|
+
- Updated dependencies [8769a62]
|
|
593
|
+
- @mastra/core@0.2.0-alpha.83
|
|
594
|
+
|
|
595
|
+
## 0.0.2-alpha.73
|
|
596
|
+
|
|
597
|
+
### Patch Changes
|
|
598
|
+
|
|
599
|
+
- Updated dependencies [73d112c]
|
|
600
|
+
- @mastra/core@0.1.27-alpha.82
|
|
601
|
+
|
|
602
|
+
## 0.0.2-alpha.72
|
|
603
|
+
|
|
604
|
+
### Patch Changes
|
|
605
|
+
|
|
606
|
+
- Updated dependencies [9fb3039]
|
|
607
|
+
- @mastra/core@0.1.27-alpha.81
|
|
608
|
+
|
|
609
|
+
## 0.0.2-alpha.71
|
|
610
|
+
|
|
611
|
+
### Patch Changes
|
|
612
|
+
|
|
613
|
+
- a944f1a: Bundle @mastra/rag package with tsup
|
|
614
|
+
|
|
615
|
+
## 0.0.2-alpha.70
|
|
616
|
+
|
|
617
|
+
### Patch Changes
|
|
618
|
+
|
|
619
|
+
- 327ece7: Updates for ts versions
|
|
620
|
+
- Updated dependencies [327ece7]
|
|
621
|
+
- @mastra/core@0.1.27-alpha.80
|
|
622
|
+
|
|
623
|
+
## 0.0.2-alpha.69
|
|
624
|
+
|
|
625
|
+
### Patch Changes
|
|
626
|
+
|
|
627
|
+
- 21fe536: add keyword tags for packages and update readmes
|
|
628
|
+
- Updated dependencies [21fe536]
|
|
629
|
+
- @mastra/core@0.1.27-alpha.79
|
|
630
|
+
|
|
631
|
+
## 0.0.2-alpha.68
|
|
632
|
+
|
|
633
|
+
### Patch Changes
|
|
634
|
+
|
|
635
|
+
- 685108a: Remove syncs and excess rag
|
|
636
|
+
- Updated dependencies [685108a]
|
|
637
|
+
- Updated dependencies [685108a]
|
|
638
|
+
- @mastra/core@0.1.27-alpha.78
|
|
639
|
+
|
|
640
|
+
## 0.0.2-alpha.67
|
|
641
|
+
|
|
642
|
+
### Patch Changes
|
|
643
|
+
|
|
644
|
+
- 8105fae: Split embed into embed and embedMany to handle different return types
|
|
645
|
+
- ecdee97: Update return type for chunk to Chunk[]
|
|
646
|
+
- Updated dependencies [8105fae]
|
|
647
|
+
- @mastra/core@0.1.27-alpha.77
|
|
648
|
+
|
|
649
|
+
## 0.0.2-alpha.66
|
|
650
|
+
|
|
651
|
+
### Patch Changes
|
|
652
|
+
|
|
653
|
+
- 9c0d010: Deprecated Reranker in favor of rerank function (BREAKING CHANGE)
|
|
654
|
+
|
|
655
|
+
## 0.0.2-alpha.65
|
|
656
|
+
|
|
657
|
+
### Patch Changes
|
|
658
|
+
|
|
659
|
+
- Updated dependencies [ae7bf94]
|
|
660
|
+
- Updated dependencies [ae7bf94]
|
|
661
|
+
- @mastra/core@0.1.27-alpha.76
|
|
662
|
+
|
|
663
|
+
## 0.0.2-alpha.64
|
|
664
|
+
|
|
665
|
+
### Patch Changes
|
|
666
|
+
|
|
667
|
+
- Updated dependencies [23dcb23]
|
|
668
|
+
- @mastra/core@0.1.27-alpha.75
|
|
669
|
+
|
|
670
|
+
## 0.0.2-alpha.63
|
|
671
|
+
|
|
672
|
+
### Patch Changes
|
|
673
|
+
|
|
674
|
+
- Updated dependencies [7b87567]
|
|
675
|
+
- @mastra/core@0.1.27-alpha.74
|
|
676
|
+
|
|
677
|
+
## 0.0.2-alpha.62
|
|
678
|
+
|
|
679
|
+
### Patch Changes
|
|
680
|
+
|
|
681
|
+
- Updated dependencies [3427b95]
|
|
682
|
+
- @mastra/core@0.1.27-alpha.73
|
|
683
|
+
|
|
684
|
+
## 0.0.2-alpha.61
|
|
685
|
+
|
|
686
|
+
### Patch Changes
|
|
687
|
+
|
|
688
|
+
- Updated dependencies [e4d4ede]
|
|
689
|
+
- Updated dependencies [06b2c0a]
|
|
690
|
+
- @mastra/core@0.1.27-alpha.72
|
|
691
|
+
|
|
692
|
+
## 0.0.2-alpha.60
|
|
693
|
+
|
|
694
|
+
### Patch Changes
|
|
695
|
+
|
|
696
|
+
- Updated dependencies [d9c8dd0]
|
|
697
|
+
- @mastra/core@0.1.27-alpha.71
|
|
698
|
+
|
|
699
|
+
## 0.0.2-alpha.59
|
|
700
|
+
|
|
701
|
+
### Patch Changes
|
|
702
|
+
|
|
703
|
+
- bdaf834: publish packages
|
|
704
|
+
|
|
705
|
+
## 0.0.2-alpha.58
|
|
706
|
+
|
|
707
|
+
### Patch Changes
|
|
708
|
+
|
|
709
|
+
- Updated dependencies [dd6d87f]
|
|
710
|
+
- Updated dependencies [04434b6]
|
|
711
|
+
- @mastra/core@0.1.27-alpha.70
|
|
712
|
+
|
|
713
|
+
## 0.0.2-alpha.57
|
|
714
|
+
|
|
715
|
+
### Patch Changes
|
|
716
|
+
|
|
717
|
+
- ab1dc59: Add Cloudflare vectorize
|
|
718
|
+
- 4769753: Added turso/libsql support for RAG
|
|
719
|
+
|
|
720
|
+
## 0.0.2-alpha.56
|
|
721
|
+
|
|
722
|
+
### Patch Changes
|
|
723
|
+
|
|
724
|
+
- ee856f3: Updated pg filter function and updated docs and example
|
|
725
|
+
- c3047a7: Added tests
|
|
726
|
+
|
|
727
|
+
## 0.0.2-alpha.55
|
|
728
|
+
|
|
729
|
+
### Patch Changes
|
|
730
|
+
|
|
731
|
+
- 1944807: Unified logger and major step in better logs
|
|
732
|
+
- Updated dependencies [1944807]
|
|
733
|
+
- Updated dependencies [9ade36e]
|
|
734
|
+
- @mastra/core@0.1.27-alpha.69
|
|
735
|
+
|
|
736
|
+
## 0.0.2-alpha.54
|
|
737
|
+
|
|
738
|
+
### Patch Changes
|
|
739
|
+
|
|
740
|
+
- Updated dependencies [0be7181]
|
|
741
|
+
- Updated dependencies [0be7181]
|
|
742
|
+
- @mastra/core@0.1.27-alpha.68
|
|
743
|
+
|
|
744
|
+
## 0.0.2-alpha.53
|
|
745
|
+
|
|
746
|
+
### Patch Changes
|
|
747
|
+
|
|
748
|
+
- Updated dependencies [c8ff2f5]
|
|
749
|
+
- @mastra/core@0.1.27-alpha.67
|
|
750
|
+
|
|
751
|
+
## 0.0.2-alpha.52
|
|
752
|
+
|
|
753
|
+
### Patch Changes
|
|
754
|
+
|
|
755
|
+
- Updated dependencies [14064f2]
|
|
756
|
+
- @mastra/core@0.1.27-alpha.66
|
|
757
|
+
|
|
758
|
+
## 0.0.2-alpha.51
|
|
759
|
+
|
|
760
|
+
### Patch Changes
|
|
761
|
+
|
|
762
|
+
- Updated dependencies [e66643a]
|
|
763
|
+
- @mastra/core@0.1.27-alpha.65
|
|
764
|
+
|
|
765
|
+
## 0.0.2-alpha.50
|
|
766
|
+
|
|
767
|
+
### Patch Changes
|
|
768
|
+
|
|
769
|
+
- 1616f70: Added transaction handling to pgvector
|
|
770
|
+
|
|
771
|
+
## 0.0.2-alpha.49
|
|
772
|
+
|
|
773
|
+
### Patch Changes
|
|
774
|
+
|
|
775
|
+
- Updated dependencies [f368477]
|
|
776
|
+
- Updated dependencies [d5ec619]
|
|
777
|
+
- @mastra/core@0.1.27-alpha.64
|
|
778
|
+
|
|
779
|
+
## 0.0.2-alpha.48
|
|
780
|
+
|
|
781
|
+
### Patch Changes
|
|
782
|
+
|
|
783
|
+
- 5826db3: Updated reference docs and exports for Reranker and GraphRag
|
|
784
|
+
|
|
785
|
+
## 0.0.2-alpha.47
|
|
786
|
+
|
|
787
|
+
### Patch Changes
|
|
788
|
+
|
|
789
|
+
- Updated dependencies [e097800]
|
|
790
|
+
- @mastra/core@0.1.27-alpha.63
|
|
791
|
+
|
|
792
|
+
## 0.0.2-alpha.46
|
|
793
|
+
|
|
794
|
+
### Patch Changes
|
|
795
|
+
|
|
796
|
+
- Updated dependencies [93a3719]
|
|
797
|
+
- @mastra/core@0.1.27-alpha.62
|
|
798
|
+
|
|
799
|
+
## 0.0.2-alpha.45
|
|
800
|
+
|
|
801
|
+
### Patch Changes
|
|
802
|
+
|
|
803
|
+
- Updated dependencies [dc90663]
|
|
804
|
+
- @mastra/core@0.1.27-alpha.61
|
|
805
|
+
|
|
806
|
+
## 0.0.2-alpha.44
|
|
807
|
+
|
|
808
|
+
### Patch Changes
|
|
809
|
+
|
|
810
|
+
- 3967e69: Added GraphRAG implementation and updated docs
|
|
811
|
+
- Updated dependencies [3967e69]
|
|
812
|
+
- @mastra/core@0.1.27-alpha.60
|
|
813
|
+
|
|
814
|
+
## 0.0.2-alpha.43
|
|
815
|
+
|
|
816
|
+
### Patch Changes
|
|
817
|
+
|
|
818
|
+
- Updated dependencies [b524c22]
|
|
819
|
+
- @mastra/core@0.1.27-alpha.59
|
|
820
|
+
|
|
821
|
+
## 0.0.2-alpha.42
|
|
822
|
+
|
|
823
|
+
### Patch Changes
|
|
824
|
+
|
|
825
|
+
- 1874f40: Added re ranking tool to RAG
|
|
826
|
+
- Updated dependencies [1874f40]
|
|
827
|
+
- Updated dependencies [4b1ce2c]
|
|
828
|
+
- @mastra/core@0.1.27-alpha.58
|
|
829
|
+
|
|
830
|
+
## 0.0.2-alpha.41
|
|
831
|
+
|
|
832
|
+
### Patch Changes
|
|
833
|
+
|
|
834
|
+
- 7de6d71: Update filter for vector query to work with more stores
|
|
835
|
+
- Updated dependencies [fd494a3]
|
|
836
|
+
- @mastra/core@0.1.27-alpha.57
|
|
837
|
+
|
|
838
|
+
## 0.0.2-alpha.40
|
|
839
|
+
|
|
840
|
+
### Patch Changes
|
|
841
|
+
|
|
842
|
+
- ae638a4: make useFilter option optional
|
|
843
|
+
- Updated dependencies [9f3ab05]
|
|
844
|
+
- @mastra/core@0.1.27-alpha.56
|
|
845
|
+
|
|
846
|
+
## 0.0.2-alpha.39
|
|
847
|
+
|
|
848
|
+
### Patch Changes
|
|
849
|
+
|
|
850
|
+
- 592e3cf: Add custom rag tools, add vector retrieval, and update docs
|
|
851
|
+
- 837a288: MAJOR Revamp of tools, workflows, syncs.
|
|
852
|
+
- 0b74006: Workflow updates
|
|
853
|
+
- Updated dependencies [592e3cf]
|
|
854
|
+
- Updated dependencies [837a288]
|
|
855
|
+
- Updated dependencies [0b74006]
|
|
856
|
+
- @mastra/core@0.1.27-alpha.55
|
|
857
|
+
|
|
858
|
+
## 0.0.2-alpha.38
|
|
859
|
+
|
|
860
|
+
### Patch Changes
|
|
861
|
+
|
|
862
|
+
- eb45d76: Updated PG Vector filter and added rag examples in docs
|
|
863
|
+
- Updated dependencies [d2cd535]
|
|
864
|
+
- @mastra/core@0.1.27-alpha.54
|
|
865
|
+
|
|
866
|
+
## 0.0.2-alpha.37
|
|
867
|
+
|
|
868
|
+
### Patch Changes
|
|
869
|
+
|
|
870
|
+
- Updated dependencies [8e7814f]
|
|
871
|
+
- @mastra/core@0.1.27-alpha.53
|
|
872
|
+
|
|
873
|
+
## 0.0.2-alpha.36
|
|
874
|
+
|
|
875
|
+
### Patch Changes
|
|
876
|
+
|
|
877
|
+
- Updated dependencies [eedb829]
|
|
878
|
+
- @mastra/core@0.1.27-alpha.52
|
|
879
|
+
|
|
880
|
+
## 0.0.2-alpha.35
|
|
881
|
+
|
|
882
|
+
### Patch Changes
|
|
883
|
+
|
|
884
|
+
- Updated dependencies [a7b016d]
|
|
885
|
+
- Updated dependencies [da2e8d3]
|
|
886
|
+
- Updated dependencies [538a136]
|
|
887
|
+
- @mastra/core@0.1.27-alpha.51
|
|
888
|
+
|
|
889
|
+
## 0.0.2-alpha.34
|
|
890
|
+
|
|
891
|
+
### Patch Changes
|
|
892
|
+
|
|
893
|
+
- Updated dependencies [401a4d9]
|
|
894
|
+
- @mastra/core@0.1.27-alpha.50
|
|
895
|
+
|
|
896
|
+
## 0.0.2-alpha.33
|
|
897
|
+
|
|
898
|
+
### Patch Changes
|
|
899
|
+
|
|
900
|
+
- a621c34: Add validation for indexName in pgVector and dimension for all vector dbs
|
|
901
|
+
- Updated dependencies [79acad0]
|
|
902
|
+
- Updated dependencies [f5dfa20]
|
|
903
|
+
- @mastra/core@0.1.27-alpha.49
|
|
904
|
+
|
|
905
|
+
## 0.0.2-alpha.32
|
|
906
|
+
|
|
907
|
+
### Patch Changes
|
|
908
|
+
|
|
909
|
+
- Updated dependencies [b726bf5]
|
|
910
|
+
- @mastra/core@0.1.27-alpha.48
|
|
911
|
+
|
|
912
|
+
## 0.0.2-alpha.31
|
|
913
|
+
|
|
914
|
+
### Patch Changes
|
|
915
|
+
|
|
916
|
+
- Updated dependencies [f6ba259]
|
|
917
|
+
- @mastra/core@0.1.27-alpha.47
|
|
918
|
+
|
|
919
|
+
## 0.0.2-alpha.30
|
|
920
|
+
|
|
921
|
+
### Patch Changes
|
|
922
|
+
|
|
923
|
+
- 8ae2bbc: Dane publishing
|
|
924
|
+
- 0bd142c: Fixes learned from docs
|
|
925
|
+
- ee4de15: Dane fixes
|
|
926
|
+
- Updated dependencies [8ae2bbc]
|
|
927
|
+
- Updated dependencies [0bd142c]
|
|
928
|
+
- Updated dependencies [ee4de15]
|
|
929
|
+
- @mastra/core@0.1.27-alpha.46
|
|
930
|
+
|
|
931
|
+
## 0.0.2-alpha.29
|
|
932
|
+
|
|
933
|
+
### Patch Changes
|
|
934
|
+
|
|
935
|
+
- Updated dependencies [e608d8c]
|
|
936
|
+
- Updated dependencies [002d6d8]
|
|
937
|
+
- @mastra/core@0.1.27-alpha.45
|
|
938
|
+
|
|
939
|
+
## 0.0.2-alpha.28
|
|
940
|
+
|
|
941
|
+
### Patch Changes
|
|
942
|
+
|
|
943
|
+
- Updated dependencies [2fa7f53]
|
|
944
|
+
- @mastra/core@0.1.27-alpha.44
|
|
945
|
+
|
|
946
|
+
## 0.0.2-alpha.27
|
|
947
|
+
|
|
948
|
+
### Patch Changes
|
|
949
|
+
|
|
950
|
+
- Updated dependencies [2e099d2]
|
|
951
|
+
- Updated dependencies [d6d8159]
|
|
952
|
+
- @mastra/core@0.1.27-alpha.43
|
|
953
|
+
|
|
954
|
+
## 0.0.2-alpha.26
|
|
955
|
+
|
|
956
|
+
### Patch Changes
|
|
957
|
+
|
|
958
|
+
- Updated dependencies [4a54c82]
|
|
959
|
+
- @mastra/core@0.1.27-alpha.42
|
|
960
|
+
|
|
961
|
+
## 0.0.2-alpha.25
|
|
962
|
+
|
|
963
|
+
### Patch Changes
|
|
964
|
+
|
|
965
|
+
- Updated dependencies [5cdfb88]
|
|
966
|
+
- @mastra/core@0.1.27-alpha.41
|
|
967
|
+
|
|
968
|
+
## 0.0.2-alpha.24
|
|
969
|
+
|
|
970
|
+
### Patch Changes
|
|
971
|
+
|
|
972
|
+
- Updated dependencies [9029796]
|
|
973
|
+
- @mastra/core@0.1.27-alpha.40
|
|
974
|
+
|
|
975
|
+
## 0.0.2-alpha.23
|
|
976
|
+
|
|
977
|
+
### Patch Changes
|
|
978
|
+
|
|
979
|
+
- 6101f2d: Fix module incompatibility, and dane cli build
|
|
980
|
+
- Updated dependencies [2b01511]
|
|
981
|
+
- @mastra/core@0.1.27-alpha.39
|
|
982
|
+
|
|
983
|
+
## 0.0.2-alpha.22
|
|
984
|
+
|
|
985
|
+
### Patch Changes
|
|
986
|
+
|
|
987
|
+
- f031a1f: expose embed from rag, and refactor embed
|
|
988
|
+
- Updated dependencies [f031a1f]
|
|
989
|
+
- @mastra/core@0.1.27-alpha.38
|
|
990
|
+
|
|
991
|
+
## 0.0.2-alpha.21
|
|
992
|
+
|
|
993
|
+
### Patch Changes
|
|
994
|
+
|
|
995
|
+
- 45fd5b8: rename MastraDocument to MDocument
|
|
996
|
+
- Updated dependencies [c872875]
|
|
997
|
+
- Updated dependencies [f6da688]
|
|
998
|
+
- Updated dependencies [b5393f1]
|
|
999
|
+
- @mastra/core@0.1.27-alpha.37
|
|
1000
|
+
|
|
1001
|
+
## 0.0.2-alpha.20
|
|
1002
|
+
|
|
1003
|
+
### Patch Changes
|
|
1004
|
+
|
|
1005
|
+
- Updated dependencies [f537e33]
|
|
1006
|
+
- Updated dependencies [bc40916]
|
|
1007
|
+
- Updated dependencies [f7d1131]
|
|
1008
|
+
- Updated dependencies [75bf3f0]
|
|
1009
|
+
- Updated dependencies [3c4488b]
|
|
1010
|
+
- Updated dependencies [d38f7a6]
|
|
1011
|
+
- @mastra/core@0.1.27-alpha.36
|
|
1012
|
+
|
|
1013
|
+
## 0.0.2-alpha.19
|
|
1014
|
+
|
|
1015
|
+
### Patch Changes
|
|
1016
|
+
|
|
1017
|
+
- 033eda6: More fixes for refactor
|
|
1018
|
+
- Updated dependencies [033eda6]
|
|
1019
|
+
- @mastra/core@0.1.27-alpha.35
|
|
1020
|
+
|
|
1021
|
+
## 0.0.2-alpha.18
|
|
1022
|
+
|
|
1023
|
+
### Patch Changes
|
|
1024
|
+
|
|
1025
|
+
- 837a288: MAJOR Revamp of tools, workflows, syncs.
|
|
1026
|
+
- 5811de6: Updates spec-writer example to use new workflows constructs. Small improvements to workflow internals. Switch transformer tokenizer for js compatible one.
|
|
1027
|
+
- Updated dependencies [837a288]
|
|
1028
|
+
- Updated dependencies [5811de6]
|
|
1029
|
+
- @mastra/core@0.1.27-alpha.34
|
|
1030
|
+
|
|
1031
|
+
## 0.0.2-alpha.17
|
|
1032
|
+
|
|
1033
|
+
### Patch Changes
|
|
1034
|
+
|
|
1035
|
+
- e1dd94a: update the api for embeddings
|
|
1036
|
+
- Updated dependencies [e1dd94a]
|
|
1037
|
+
- @mastra/core@0.1.27-alpha.33
|
|
1038
|
+
|
|
1039
|
+
## 0.0.2-alpha.16
|
|
1040
|
+
|
|
1041
|
+
### Patch Changes
|
|
1042
|
+
|
|
1043
|
+
- Updated dependencies [2712098]
|
|
1044
|
+
- @mastra/core@0.1.27-alpha.32
|
|
1045
|
+
|
|
1046
|
+
## 0.0.2-alpha.15
|
|
1047
|
+
|
|
1048
|
+
### Patch Changes
|
|
1049
|
+
|
|
1050
|
+
- Updated dependencies [c2dd6b5]
|
|
1051
|
+
- @mastra/core@0.1.27-alpha.31
|
|
1052
|
+
|
|
1053
|
+
## 0.0.2-alpha.14
|
|
1054
|
+
|
|
1055
|
+
### Patch Changes
|
|
1056
|
+
|
|
1057
|
+
- 1c3232a: ChromaDB
|
|
1058
|
+
|
|
1059
|
+
## 0.0.2-alpha.13
|
|
1060
|
+
|
|
1061
|
+
### Patch Changes
|
|
1062
|
+
|
|
1063
|
+
- Updated dependencies [963c15a]
|
|
1064
|
+
- @mastra/core@0.1.27-alpha.30
|
|
1065
|
+
|
|
1066
|
+
## 0.0.2-alpha.12
|
|
1067
|
+
|
|
1068
|
+
### Patch Changes
|
|
1069
|
+
|
|
1070
|
+
- Updated dependencies [7d87a15]
|
|
1071
|
+
- @mastra/core@0.1.27-alpha.29
|
|
1072
|
+
|
|
1073
|
+
## 0.0.2-alpha.11
|
|
1074
|
+
|
|
1075
|
+
### Patch Changes
|
|
1076
|
+
|
|
1077
|
+
- Updated dependencies [1ebd071]
|
|
1078
|
+
- @mastra/core@0.1.27-alpha.28
|
|
1079
|
+
|
|
1080
|
+
## 0.0.2-alpha.10
|
|
1081
|
+
|
|
1082
|
+
### Patch Changes
|
|
1083
|
+
|
|
1084
|
+
- 779702b: Upstash vector
|
|
1085
|
+
|
|
1086
|
+
## 0.0.2-alpha.9
|
|
1087
|
+
|
|
1088
|
+
### Patch Changes
|
|
1089
|
+
|
|
1090
|
+
- Updated dependencies [cd02c56]
|
|
1091
|
+
- @mastra/core@0.1.27-alpha.27
|
|
1092
|
+
|
|
1093
|
+
## 0.0.2-alpha.8
|
|
1094
|
+
|
|
1095
|
+
### Patch Changes
|
|
1096
|
+
|
|
1097
|
+
- Updated dependencies [d5e12de]
|
|
1098
|
+
- @mastra/core@0.1.27-alpha.26
|
|
1099
|
+
|
|
1100
|
+
## 0.0.2-alpha.7
|
|
1101
|
+
|
|
1102
|
+
### Patch Changes
|
|
1103
|
+
|
|
1104
|
+
- 24fe87e: Change document semantics
|
|
1105
|
+
|
|
1106
|
+
## 0.0.2-alpha.6
|
|
1107
|
+
|
|
1108
|
+
### Patch Changes
|
|
1109
|
+
|
|
1110
|
+
- Updated dependencies [01502b0]
|
|
1111
|
+
- @mastra/core@0.1.27-alpha.25
|
|
1112
|
+
|
|
1113
|
+
## 0.0.2-alpha.5
|
|
1114
|
+
|
|
1115
|
+
### Patch Changes
|
|
1116
|
+
|
|
1117
|
+
- 036ee5e: Add astra-db to rag
|
|
1118
|
+
|
|
1119
|
+
## 0.0.2-alpha.4
|
|
1120
|
+
|
|
1121
|
+
### Patch Changes
|
|
1122
|
+
|
|
1123
|
+
- Updated dependencies [836f4e3]
|
|
1124
|
+
- @mastra/core@0.1.27-alpha.24
|
|
1125
|
+
|
|
1126
|
+
## 0.0.2-alpha.3
|
|
1127
|
+
|
|
1128
|
+
### Patch Changes
|
|
1129
|
+
|
|
1130
|
+
- Updated dependencies [0b826f6]
|
|
1131
|
+
- @mastra/core@0.1.27-alpha.23
|
|
1132
|
+
|
|
1133
|
+
## 0.0.2-alpha.2
|
|
1134
|
+
|
|
1135
|
+
### Patch Changes
|
|
1136
|
+
|
|
1137
|
+
- Updated dependencies [7a19083]
|
|
1138
|
+
- @mastra/core@0.1.27-alpha.22
|
|
1139
|
+
|
|
1140
|
+
## 0.0.2-alpha.1
|
|
1141
|
+
|
|
1142
|
+
### Patch Changes
|
|
1143
|
+
|
|
1144
|
+
- Updated dependencies [5ee2e78]
|
|
1145
|
+
- @mastra/core@0.1.27-alpha.21
|
|
1146
|
+
|
|
1147
|
+
## 0.0.2-alpha.0
|
|
1148
|
+
|
|
1149
|
+
### Patch Changes
|
|
1150
|
+
|
|
1151
|
+
- 8413645: Initial release for rag
|