@mastra/duckdb 0.0.0 → 1.0.0-beta.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/LICENSE.md +15 -0
  3. package/package.json +16 -16
package/CHANGELOG.md ADDED
@@ -0,0 +1,42 @@
1
+ # @mastra/duckdb
2
+
3
+ ## 1.0.0-beta.2
4
+
5
+ ### Minor Changes
6
+
7
+ - Add DuckDB vector store implementation ([#10760](https://github.com/mastra-ai/mastra/pull/10760))
8
+
9
+ Adds DuckDB as a vector store provider for Mastra, enabling embedded high-performance vector storage without requiring an external server.
10
+
11
+ ```typescript
12
+ import { DuckDBVector } from '@mastra/duckdb';
13
+
14
+ const vectorStore = new DuckDBVector({
15
+ id: 'my-store',
16
+ path: ':memory:', // or './vectors.duckdb' for persistence
17
+ });
18
+
19
+ await vectorStore.createIndex({
20
+ indexName: 'docs',
21
+ dimension: 1536,
22
+ metric: 'cosine',
23
+ });
24
+
25
+ await vectorStore.upsert({
26
+ indexName: 'docs',
27
+ vectors: [[0.1, 0.2, ...]],
28
+ metadata: [{ text: 'hello world' }],
29
+ });
30
+
31
+ const results = await vectorStore.query({
32
+ indexName: 'docs',
33
+ queryVector: [0.1, 0.2, ...],
34
+ topK: 10,
35
+ filter: { text: 'hello world' },
36
+ });
37
+ ```
38
+
39
+ ### Patch Changes
40
+
41
+ - Updated dependencies [[`ac0d2f4`](https://github.com/mastra-ai/mastra/commit/ac0d2f4ff8831f72c1c66c2be809706d17f65789), [`1a0d3fc`](https://github.com/mastra-ai/mastra/commit/1a0d3fc811482c9c376cdf79ee615c23bae9b2d6), [`85a628b`](https://github.com/mastra-ai/mastra/commit/85a628b1224a8f64cd82ea7f033774bf22df7a7e), [`c237233`](https://github.com/mastra-ai/mastra/commit/c23723399ccedf7f5744b3f40997b79246bfbe64), [`15f9e21`](https://github.com/mastra-ai/mastra/commit/15f9e216177201ea6e3f6d0bfb063fcc0953444f), [`ff94dea`](https://github.com/mastra-ai/mastra/commit/ff94dea935f4e34545c63bcb6c29804732698809), [`5b2ff46`](https://github.com/mastra-ai/mastra/commit/5b2ff4651df70c146523a7fca773f8eb0a2272f8), [`db41688`](https://github.com/mastra-ai/mastra/commit/db4168806d007417e2e60b4f68656dca4e5f40c9), [`5ca599d`](https://github.com/mastra-ai/mastra/commit/5ca599d0bb59a1595f19f58473fcd67cc71cef58), [`bff1145`](https://github.com/mastra-ai/mastra/commit/bff114556b3cbadad9b2768488708f8ad0e91475), [`5c8ca24`](https://github.com/mastra-ai/mastra/commit/5c8ca247094e0cc2cdbd7137822fb47241f86e77), [`e191844`](https://github.com/mastra-ai/mastra/commit/e1918444ca3f80e82feef1dad506cd4ec6e2875f), [`22553f1`](https://github.com/mastra-ai/mastra/commit/22553f11c63ee5e966a9c034a349822249584691), [`7237163`](https://github.com/mastra-ai/mastra/commit/72371635dbf96a87df4b073cc48fc655afbdce3d), [`2500740`](https://github.com/mastra-ai/mastra/commit/2500740ea23da067d6e50ec71c625ab3ce275e64), [`873ecbb`](https://github.com/mastra-ai/mastra/commit/873ecbb517586aa17d2f1e99283755b3ebb2863f), [`4f9bbe5`](https://github.com/mastra-ai/mastra/commit/4f9bbe5968f42c86f4930b8193de3c3c17e5bd36), [`02e51fe`](https://github.com/mastra-ai/mastra/commit/02e51feddb3d4155cfbcc42624fd0d0970d032c0), [`8f3fa3a`](https://github.com/mastra-ai/mastra/commit/8f3fa3a652bb77da092f913ec51ae46e3a7e27dc), [`cd29ad2`](https://github.com/mastra-ai/mastra/commit/cd29ad23a255534e8191f249593849ed29160886), [`bdf4d8c`](https://github.com/mastra-ai/mastra/commit/bdf4d8cdc656d8a2c21d81834bfa3bfa70f56c16), [`854e3da`](https://github.com/mastra-ai/mastra/commit/854e3dad5daac17a91a20986399d3a51f54bf68b), [`ce18d38`](https://github.com/mastra-ai/mastra/commit/ce18d38678c65870350d123955014a8432075fd9), [`cccf9c8`](https://github.com/mastra-ai/mastra/commit/cccf9c8b2d2dfc1a5e63919395b83d78c89682a0), [`61a5705`](https://github.com/mastra-ai/mastra/commit/61a570551278b6743e64243b3ce7d73de915ca8a), [`db70a48`](https://github.com/mastra-ai/mastra/commit/db70a48aeeeeb8e5f92007e8ede52c364ce15287), [`f0fdc14`](https://github.com/mastra-ai/mastra/commit/f0fdc14ee233d619266b3d2bbdeea7d25cfc6d13), [`db18bc9`](https://github.com/mastra-ai/mastra/commit/db18bc9c3825e2c1a0ad9a183cc9935f6691bfa1), [`9b37b56`](https://github.com/mastra-ai/mastra/commit/9b37b565e1f2a76c24f728945cc740c2b09be9da), [`41a23c3`](https://github.com/mastra-ai/mastra/commit/41a23c32f9877d71810f37e24930515df2ff7a0f), [`5d171ad`](https://github.com/mastra-ai/mastra/commit/5d171ad9ef340387276b77c2bb3e83e83332d729), [`f03ae60`](https://github.com/mastra-ai/mastra/commit/f03ae60500fe350c9d828621006cdafe1975fdd8), [`d1e74a0`](https://github.com/mastra-ai/mastra/commit/d1e74a0a293866dece31022047f5dbab65a304d0), [`39e7869`](https://github.com/mastra-ai/mastra/commit/39e7869bc7d0ee391077ce291474d8a84eedccff), [`5761926`](https://github.com/mastra-ai/mastra/commit/57619260c4a2cdd598763abbacd90de594c6bc76), [`c900fdd`](https://github.com/mastra-ai/mastra/commit/c900fdd504c41348efdffb205cfe80d48c38fa33), [`604a79f`](https://github.com/mastra-ai/mastra/commit/604a79fecf276e26a54a3fe01bb94e65315d2e0e), [`887f0b4`](https://github.com/mastra-ai/mastra/commit/887f0b4746cdbd7cb7d6b17ac9f82aeb58037ea5), [`2562143`](https://github.com/mastra-ai/mastra/commit/256214336b4faa78646c9c1776612393790d8784), [`ef11a61`](https://github.com/mastra-ai/mastra/commit/ef11a61920fa0ed08a5b7ceedd192875af119749)]:
42
+ - @mastra/core@1.0.0-beta.6
package/LICENSE.md ADDED
@@ -0,0 +1,15 @@
1
+ # Apache License 2.0
2
+
3
+ Copyright (c) 2025 Kepler Software, Inc.
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/duckdb",
3
- "version": "0.0.0",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "DuckDB vector store provider for Mastra - embedded high-performance vector storage with HNSW indexing",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,31 +18,24 @@
18
18
  },
19
19
  "./package.json": "./package.json"
20
20
  },
21
- "scripts": {
22
- "build": "tsup --silent --config tsup.config.ts",
23
- "build:watch": "tsup --watch --silent --config tsup.config.ts",
24
- "test": "vitest run",
25
- "lint": "eslint .",
26
- "typecheck": "tsc --noEmit"
27
- },
28
21
  "license": "Apache-2.0",
29
22
  "dependencies": {
30
23
  "@duckdb/node-api": "1.4.2-r.1"
31
24
  },
32
25
  "devDependencies": {
33
- "@internal/lint": "workspace:*",
34
- "@internal/storage-test-utils": "workspace:*",
35
- "@internal/types-builder": "workspace:*",
36
- "@mastra/core": "workspace:*",
37
26
  "@microsoft/api-extractor": "^7.52.8",
38
27
  "@types/node": "22.13.17",
39
- "@vitest/coverage-v8": "catalog:",
40
- "@vitest/ui": "catalog:",
28
+ "@vitest/coverage-v8": "4.0.12",
29
+ "@vitest/ui": "4.0.12",
41
30
  "eslint": "^9.37.0",
42
31
  "rimraf": "^5.0.7",
43
32
  "tsup": "^8.5.0",
44
33
  "typescript": "^5.8.3",
45
- "vitest": "catalog:"
34
+ "vitest": "4.0.12",
35
+ "@internal/lint": "0.0.53",
36
+ "@internal/storage-test-utils": "0.0.49",
37
+ "@mastra/core": "1.0.0-beta.6",
38
+ "@internal/types-builder": "0.0.28"
46
39
  },
47
40
  "peerDependencies": {
48
41
  "@mastra/core": ">=1.0.0-0 <2.0.0-0"
@@ -62,5 +55,12 @@
62
55
  },
63
56
  "engines": {
64
57
  "node": ">=22.13.0"
58
+ },
59
+ "scripts": {
60
+ "build": "tsup --silent --config tsup.config.ts",
61
+ "build:watch": "tsup --watch --silent --config tsup.config.ts",
62
+ "test": "vitest run",
63
+ "lint": "eslint .",
64
+ "typecheck": "tsc --noEmit"
65
65
  }
66
- }
66
+ }