@mastra/voyageai 0.1.0-alpha.0 → 0.1.0
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/CHANGELOG.md +13 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @mastra/voyageai
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat(voyageai): add VoyageAI embeddings and reranker integration ([#14296](https://github.com/mastra-ai/mastra/pull/14296))
|
|
8
|
+
|
|
9
|
+
Adds the `@mastra/voyageai` package under `embedders/` with:
|
|
10
|
+
- Text embeddings (voyage-4 and voyage-3 series, plus code/finance/law models)
|
|
11
|
+
with token-aware batching via the SDK `tokenize()` method
|
|
12
|
+
- Multimodal embeddings (text + images + video) via voyage-multimodal-3/3.5
|
|
13
|
+
- Contextualized chunk embeddings via voyage-context-3
|
|
14
|
+
- Rerankers (rerank-2.5 and rerank-2 families) implementing `RelevanceScoreProvider`
|
|
15
|
+
|
|
3
16
|
## 0.1.0-alpha.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/voyageai",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "VoyageAI embeddings integration for Mastra - text, multimodal, and contextualized chunk embeddings",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"typescript": "^6.0.3",
|
|
47
47
|
"vitest": "4.1.5",
|
|
48
48
|
"zod": "^4.4.3",
|
|
49
|
-
"@internal/ai-sdk-
|
|
50
|
-
"@internal/ai-sdk-
|
|
51
|
-
"@internal/ai-v6": "0.0.
|
|
52
|
-
"@internal/
|
|
53
|
-
"@internal/
|
|
49
|
+
"@internal/ai-sdk-v4": "0.0.51",
|
|
50
|
+
"@internal/ai-sdk-v5": "0.0.51",
|
|
51
|
+
"@internal/ai-v6": "0.0.51",
|
|
52
|
+
"@internal/types-builder": "0.0.79",
|
|
53
|
+
"@internal/lint": "0.0.104"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=22.13.0"
|