@mastra/convex 0.0.0-new-button-export-20251219130424 → 0.0.0-remove-ai-peer-dep-from-evals-20260105220639
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 +493 -3
- package/dist/chunk-H5QJE733.cjs +104 -0
- package/dist/chunk-H5QJE733.cjs.map +1 -0
- package/dist/chunk-HXB4DWFE.js +73 -0
- package/dist/chunk-HXB4DWFE.js.map +1 -0
- package/dist/docs/README.md +32 -0
- package/dist/docs/SKILL.md +46 -0
- package/dist/docs/SOURCE_MAP.json +63 -0
- package/dist/docs/storage/01-reference.md +140 -0
- package/dist/docs/vectors/01-reference.md +240 -0
- package/dist/index.cjs +26 -153
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -141
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +17 -17
- package/dist/schema.d.ts +52 -75
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +1 -1
- package/dist/server/index.cjs +14 -14
- package/dist/server/index.js +1 -1
- package/dist/storage/domains/memory/index.d.ts.map +1 -1
- package/dist/storage/domains/scores/index.d.ts +5 -14
- package/dist/storage/domains/scores/index.d.ts.map +1 -1
- package/dist/storage/index.d.ts +54 -123
- package/dist/storage/index.d.ts.map +1 -1
- package/package.json +9 -8
- package/dist/chunk-PKUUSREO.js +0 -76
- package/dist/chunk-PKUUSREO.js.map +0 -1
- package/dist/chunk-ZBUP3DS6.cjs +0 -93
- package/dist/chunk-ZBUP3DS6.cjs.map +0 -1
- package/dist/server/schema.d.ts +0 -115
- package/dist/server/schema.d.ts.map +0 -1
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
# Vectors API Reference
|
|
2
|
+
|
|
3
|
+
> API reference for vectors - 1 entries
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Reference: Convex Vector Store
|
|
9
|
+
|
|
10
|
+
> Documentation for the ConvexVector class in Mastra, which provides vector search using Convex.
|
|
11
|
+
|
|
12
|
+
The ConvexVector class provides vector storage and similarity search using [Convex](https://convex.dev). It stores embeddings inside Convex and performs cosine similarity search.
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install @mastra/convex@beta
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Convex Setup
|
|
21
|
+
|
|
22
|
+
Before using `ConvexVector`, you need to set up the Convex schema and storage handler. See [Convex Storage Setup](../storage/convex#convex-setup) for setup instructions.
|
|
23
|
+
|
|
24
|
+
## Constructor Options
|
|
25
|
+
|
|
26
|
+
## Constructor Examples
|
|
27
|
+
|
|
28
|
+
### Basic Configuration
|
|
29
|
+
|
|
30
|
+
```ts
|
|
31
|
+
import { ConvexVector } from "@mastra/convex";
|
|
32
|
+
|
|
33
|
+
const vectorStore = new ConvexVector({
|
|
34
|
+
id: 'convex-vectors',
|
|
35
|
+
deploymentUrl: "https://your-project.convex.cloud",
|
|
36
|
+
adminAuthToken: "your-admin-token",
|
|
37
|
+
});
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Custom Storage Function
|
|
41
|
+
|
|
42
|
+
```ts
|
|
43
|
+
const vectorStore = new ConvexVector({
|
|
44
|
+
id: 'convex-vectors',
|
|
45
|
+
deploymentUrl: "https://your-project.convex.cloud",
|
|
46
|
+
adminAuthToken: "your-admin-token",
|
|
47
|
+
storageFunction: "custom/path:handler",
|
|
48
|
+
});
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Methods
|
|
52
|
+
|
|
53
|
+
### createIndex()
|
|
54
|
+
|
|
55
|
+
```typescript
|
|
56
|
+
await vectorStore.createIndex({
|
|
57
|
+
indexName: "my_vectors",
|
|
58
|
+
dimension: 1536,
|
|
59
|
+
});
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### upsert()
|
|
63
|
+
|
|
64
|
+
```typescript
|
|
65
|
+
await vectorStore.upsert({
|
|
66
|
+
indexName: "my_vectors",
|
|
67
|
+
vectors: [[0.1, 0.2, 0.3, ...]],
|
|
68
|
+
metadata: [{ label: "example" }],
|
|
69
|
+
ids: ["vec-1"],
|
|
70
|
+
});
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### query()
|
|
74
|
+
|
|
75
|
+
```typescript
|
|
76
|
+
const results = await vectorStore.query({
|
|
77
|
+
indexName: "my_vectors",
|
|
78
|
+
queryVector: [0.1, 0.2, 0.3, ...],
|
|
79
|
+
topK: 5,
|
|
80
|
+
filter: { category: "documents" },
|
|
81
|
+
});
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### listIndexes()
|
|
85
|
+
|
|
86
|
+
Returns an array of index names as strings.
|
|
87
|
+
|
|
88
|
+
```typescript
|
|
89
|
+
const indexes = await vectorStore.listIndexes();
|
|
90
|
+
// ["my_vectors", "embeddings", ...]
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### describeIndex()
|
|
94
|
+
|
|
95
|
+
Returns:
|
|
96
|
+
|
|
97
|
+
```typescript
|
|
98
|
+
interface IndexStats {
|
|
99
|
+
dimension: number;
|
|
100
|
+
count: number;
|
|
101
|
+
metric: "cosine" | "euclidean" | "dotproduct";
|
|
102
|
+
}
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
### deleteIndex()
|
|
106
|
+
|
|
107
|
+
Deletes the index and all its vectors.
|
|
108
|
+
|
|
109
|
+
```typescript
|
|
110
|
+
await vectorStore.deleteIndex({ indexName: "my_vectors" });
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
### updateVector()
|
|
114
|
+
|
|
115
|
+
Update a single vector by ID or by metadata filter. Either `id` or `filter` must be provided, but not both.
|
|
116
|
+
|
|
117
|
+
```typescript
|
|
118
|
+
// Update by ID
|
|
119
|
+
await vectorStore.updateVector({
|
|
120
|
+
indexName: "my_vectors",
|
|
121
|
+
id: "vector123",
|
|
122
|
+
update: {
|
|
123
|
+
vector: [0.1, 0.2, 0.3],
|
|
124
|
+
metadata: { label: "updated" },
|
|
125
|
+
},
|
|
126
|
+
});
|
|
127
|
+
|
|
128
|
+
// Update by filter
|
|
129
|
+
await vectorStore.updateVector({
|
|
130
|
+
indexName: "my_vectors",
|
|
131
|
+
filter: { category: "product" },
|
|
132
|
+
update: {
|
|
133
|
+
metadata: { status: "reviewed" },
|
|
134
|
+
},
|
|
135
|
+
});
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
### deleteVector()
|
|
139
|
+
|
|
140
|
+
```typescript
|
|
141
|
+
await vectorStore.deleteVector({ indexName: "my_vectors", id: "vector123" });
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### deleteVectors()
|
|
145
|
+
|
|
146
|
+
Delete multiple vectors by IDs or by metadata filter. Either `ids` or `filter` must be provided, but not both.
|
|
147
|
+
|
|
148
|
+
```typescript
|
|
149
|
+
// Delete by IDs
|
|
150
|
+
await vectorStore.deleteVectors({
|
|
151
|
+
indexName: "my_vectors",
|
|
152
|
+
ids: ["vec1", "vec2", "vec3"],
|
|
153
|
+
});
|
|
154
|
+
|
|
155
|
+
// Delete by filter
|
|
156
|
+
await vectorStore.deleteVectors({
|
|
157
|
+
indexName: "my_vectors",
|
|
158
|
+
filter: { status: "archived" },
|
|
159
|
+
});
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
## Response Types
|
|
163
|
+
|
|
164
|
+
Query results are returned in this format:
|
|
165
|
+
|
|
166
|
+
```typescript
|
|
167
|
+
interface QueryResult {
|
|
168
|
+
id: string;
|
|
169
|
+
score: number;
|
|
170
|
+
metadata: Record<string, any>;
|
|
171
|
+
vector?: number[]; // Only included if includeVector is true
|
|
172
|
+
}
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
## Metadata Filtering
|
|
176
|
+
|
|
177
|
+
ConvexVector supports metadata filtering with various operators:
|
|
178
|
+
|
|
179
|
+
```typescript
|
|
180
|
+
// Simple equality
|
|
181
|
+
const results = await vectorStore.query({
|
|
182
|
+
indexName: "my_vectors",
|
|
183
|
+
queryVector: embedding,
|
|
184
|
+
filter: { category: "documents" },
|
|
185
|
+
});
|
|
186
|
+
|
|
187
|
+
// Comparison operators
|
|
188
|
+
const results = await vectorStore.query({
|
|
189
|
+
indexName: "my_vectors",
|
|
190
|
+
queryVector: embedding,
|
|
191
|
+
filter: {
|
|
192
|
+
price: { $gt: 100 },
|
|
193
|
+
status: { $in: ["active", "pending"] },
|
|
194
|
+
},
|
|
195
|
+
});
|
|
196
|
+
|
|
197
|
+
// Logical operators
|
|
198
|
+
const results = await vectorStore.query({
|
|
199
|
+
indexName: "my_vectors",
|
|
200
|
+
queryVector: embedding,
|
|
201
|
+
filter: {
|
|
202
|
+
$and: [
|
|
203
|
+
{ category: "electronics" },
|
|
204
|
+
{ price: { $lte: 500 } },
|
|
205
|
+
],
|
|
206
|
+
},
|
|
207
|
+
});
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
### Supported Filter Operators
|
|
211
|
+
|
|
212
|
+
| Operator | Description |
|
|
213
|
+
| -------- | ----------- |
|
|
214
|
+
| `$eq` | Equal to |
|
|
215
|
+
| `$ne` | Not equal to |
|
|
216
|
+
| `$gt` | Greater than |
|
|
217
|
+
| `$gte` | Greater than or equal |
|
|
218
|
+
| `$lt` | Less than |
|
|
219
|
+
| `$lte` | Less than or equal |
|
|
220
|
+
| `$in` | In array |
|
|
221
|
+
| `$nin` | Not in array |
|
|
222
|
+
| `$and` | Logical AND |
|
|
223
|
+
| `$or` | Logical OR |
|
|
224
|
+
|
|
225
|
+
## Architecture
|
|
226
|
+
|
|
227
|
+
ConvexVector stores vectors in the `mastra_vectors` table with the following structure:
|
|
228
|
+
|
|
229
|
+
- `id`: Unique vector identifier
|
|
230
|
+
- `indexName`: Name of the index
|
|
231
|
+
- `embedding`: The vector data (array of floats)
|
|
232
|
+
- `metadata`: Optional JSON metadata
|
|
233
|
+
|
|
234
|
+
Vector similarity search is performed using cosine similarity, computed in the Convex function.
|
|
235
|
+
|
|
236
|
+
## Related
|
|
237
|
+
|
|
238
|
+
- [Convex Storage](../storage/convex)
|
|
239
|
+
- [Metadata Filters](../rag/metadata-filters)
|
|
240
|
+
- [Convex Documentation](https://docs.convex.dev/)
|
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var chunkBKVR7SL7_cjs = require('./chunk-BKVR7SL7.cjs');
|
|
4
|
-
var
|
|
4
|
+
var chunkH5QJE733_cjs = require('./chunk-H5QJE733.cjs');
|
|
5
5
|
var storage = require('@mastra/core/storage');
|
|
6
6
|
var agent = require('@mastra/core/agent');
|
|
7
7
|
var error = require('@mastra/core/error');
|
|
@@ -295,15 +295,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
|
|
|
295
295
|
if (resourceId) {
|
|
296
296
|
rows = rows.filter((row) => row.resourceId === resourceId);
|
|
297
297
|
}
|
|
298
|
-
|
|
299
|
-
const { start, end } = filter.dateRange;
|
|
300
|
-
rows = rows.filter((row) => {
|
|
301
|
-
const created = new Date(row.createdAt).getTime();
|
|
302
|
-
if (start && created < start.getTime()) return false;
|
|
303
|
-
if (end && created > end.getTime()) return false;
|
|
304
|
-
return true;
|
|
305
|
-
});
|
|
306
|
-
}
|
|
298
|
+
rows = storage.filterByDateRange(rows, (row) => new Date(row.createdAt), filter?.dateRange);
|
|
307
299
|
rows.sort((a, b) => {
|
|
308
300
|
const aValue = field === "createdAt" || field === "updatedAt" ? new Date(a[field]).getTime() : a[field];
|
|
309
301
|
const bValue = field === "createdAt" || field === "updatedAt" ? new Date(b[field]).getTime() : b[field];
|
|
@@ -859,143 +851,24 @@ var WorkflowsConvex = class extends storage.WorkflowsStorage {
|
|
|
859
851
|
};
|
|
860
852
|
|
|
861
853
|
// src/storage/index.ts
|
|
854
|
+
var isClientConfig = (config) => {
|
|
855
|
+
return "client" in config;
|
|
856
|
+
};
|
|
862
857
|
var ConvexStore = class extends storage.MastraStorage {
|
|
863
|
-
|
|
864
|
-
workflows;
|
|
865
|
-
scores;
|
|
858
|
+
stores = {};
|
|
866
859
|
constructor(config) {
|
|
867
860
|
super({ id: config.id, name: config.name ?? "ConvexStore", disableInit: config.disableInit });
|
|
868
|
-
const client = new ConvexAdminClient(config);
|
|
861
|
+
const client = isClientConfig(config) ? config.client : new ConvexAdminClient(config);
|
|
869
862
|
const domainConfig = { client };
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
863
|
+
const memory = new MemoryConvex(domainConfig);
|
|
864
|
+
const workflows = new WorkflowsConvex(domainConfig);
|
|
865
|
+
const scores = new ScoresConvex(domainConfig);
|
|
873
866
|
this.stores = {
|
|
874
|
-
memory
|
|
875
|
-
workflows
|
|
876
|
-
scores
|
|
877
|
-
};
|
|
878
|
-
}
|
|
879
|
-
get supports() {
|
|
880
|
-
return {
|
|
881
|
-
selectByIncludeResourceScope: true,
|
|
882
|
-
resourceWorkingMemory: true,
|
|
883
|
-
hasColumn: false,
|
|
884
|
-
createTable: false,
|
|
885
|
-
deleteMessages: true,
|
|
886
|
-
observabilityInstance: false,
|
|
887
|
-
listScoresBySpan: false
|
|
867
|
+
memory,
|
|
868
|
+
workflows,
|
|
869
|
+
scores
|
|
888
870
|
};
|
|
889
871
|
}
|
|
890
|
-
async getThreadById({ threadId }) {
|
|
891
|
-
return this.memory.getThreadById({ threadId });
|
|
892
|
-
}
|
|
893
|
-
async saveThread({ thread }) {
|
|
894
|
-
return this.memory.saveThread({ thread });
|
|
895
|
-
}
|
|
896
|
-
async updateThread({
|
|
897
|
-
id,
|
|
898
|
-
title,
|
|
899
|
-
metadata
|
|
900
|
-
}) {
|
|
901
|
-
return this.memory.updateThread({ id, title, metadata });
|
|
902
|
-
}
|
|
903
|
-
async deleteThread({ threadId }) {
|
|
904
|
-
await this.memory.deleteThread({ threadId });
|
|
905
|
-
}
|
|
906
|
-
async listMessages(args) {
|
|
907
|
-
return this.memory.listMessages(args);
|
|
908
|
-
}
|
|
909
|
-
async listMessagesById({ messageIds }) {
|
|
910
|
-
return this.memory.listMessagesById({ messageIds });
|
|
911
|
-
}
|
|
912
|
-
async saveMessages(args) {
|
|
913
|
-
return this.memory.saveMessages(args);
|
|
914
|
-
}
|
|
915
|
-
async updateMessages({
|
|
916
|
-
messages
|
|
917
|
-
}) {
|
|
918
|
-
return this.memory.updateMessages({ messages });
|
|
919
|
-
}
|
|
920
|
-
async deleteMessages(messageIds) {
|
|
921
|
-
await this.memory.deleteMessages(messageIds);
|
|
922
|
-
}
|
|
923
|
-
async listThreadsByResourceId(args) {
|
|
924
|
-
return this.memory.listThreadsByResourceId(args);
|
|
925
|
-
}
|
|
926
|
-
async getResourceById({ resourceId }) {
|
|
927
|
-
return this.memory.getResourceById({ resourceId });
|
|
928
|
-
}
|
|
929
|
-
async saveResource({ resource }) {
|
|
930
|
-
return this.memory.saveResource({ resource });
|
|
931
|
-
}
|
|
932
|
-
async updateResource({
|
|
933
|
-
resourceId,
|
|
934
|
-
workingMemory,
|
|
935
|
-
metadata
|
|
936
|
-
}) {
|
|
937
|
-
return this.memory.updateResource({ resourceId, workingMemory, metadata });
|
|
938
|
-
}
|
|
939
|
-
async updateWorkflowResults(params) {
|
|
940
|
-
return this.workflows.updateWorkflowResults(params);
|
|
941
|
-
}
|
|
942
|
-
async updateWorkflowState(params) {
|
|
943
|
-
return this.workflows.updateWorkflowState(params);
|
|
944
|
-
}
|
|
945
|
-
async persistWorkflowSnapshot({
|
|
946
|
-
workflowName,
|
|
947
|
-
runId,
|
|
948
|
-
resourceId,
|
|
949
|
-
snapshot
|
|
950
|
-
}) {
|
|
951
|
-
await this.workflows.persistWorkflowSnapshot({ workflowName, runId, resourceId, snapshot });
|
|
952
|
-
}
|
|
953
|
-
async loadWorkflowSnapshot({
|
|
954
|
-
workflowName,
|
|
955
|
-
runId
|
|
956
|
-
}) {
|
|
957
|
-
return this.workflows.loadWorkflowSnapshot({ workflowName, runId });
|
|
958
|
-
}
|
|
959
|
-
async listWorkflowRuns(args) {
|
|
960
|
-
return this.workflows.listWorkflowRuns(args);
|
|
961
|
-
}
|
|
962
|
-
async getWorkflowRunById({
|
|
963
|
-
runId,
|
|
964
|
-
workflowName
|
|
965
|
-
}) {
|
|
966
|
-
return this.workflows.getWorkflowRunById({ runId, workflowName });
|
|
967
|
-
}
|
|
968
|
-
async deleteWorkflowRunById({ runId, workflowName }) {
|
|
969
|
-
return this.workflows.deleteWorkflowRunById({ runId, workflowName });
|
|
970
|
-
}
|
|
971
|
-
async getScoreById({ id }) {
|
|
972
|
-
return this.scores.getScoreById({ id });
|
|
973
|
-
}
|
|
974
|
-
async saveScore(score) {
|
|
975
|
-
return this.scores.saveScore(score);
|
|
976
|
-
}
|
|
977
|
-
async listScoresByScorerId({
|
|
978
|
-
scorerId,
|
|
979
|
-
pagination,
|
|
980
|
-
entityId,
|
|
981
|
-
entityType,
|
|
982
|
-
source
|
|
983
|
-
}) {
|
|
984
|
-
return this.scores.listScoresByScorerId({ scorerId, pagination, entityId, entityType, source });
|
|
985
|
-
}
|
|
986
|
-
async listScoresByRunId({
|
|
987
|
-
runId,
|
|
988
|
-
pagination
|
|
989
|
-
}) {
|
|
990
|
-
return this.scores.listScoresByRunId({ runId, pagination });
|
|
991
|
-
}
|
|
992
|
-
async listScoresByEntityId({
|
|
993
|
-
entityId,
|
|
994
|
-
entityType,
|
|
995
|
-
pagination
|
|
996
|
-
}) {
|
|
997
|
-
return this.scores.listScoresByEntityId({ entityId, entityType, pagination });
|
|
998
|
-
}
|
|
999
872
|
};
|
|
1000
873
|
var INDEX_METADATA_TABLE = "mastra_vector_indexes";
|
|
1001
874
|
var ConvexVector = class extends vector.MastraVector {
|
|
@@ -1306,55 +1179,55 @@ Object.defineProperty(exports, "mastraStorage", {
|
|
|
1306
1179
|
});
|
|
1307
1180
|
Object.defineProperty(exports, "TABLE_MESSAGES", {
|
|
1308
1181
|
enumerable: true,
|
|
1309
|
-
get: function () { return
|
|
1182
|
+
get: function () { return chunkH5QJE733_cjs.TABLE_MESSAGES; }
|
|
1310
1183
|
});
|
|
1311
1184
|
Object.defineProperty(exports, "TABLE_RESOURCES", {
|
|
1312
1185
|
enumerable: true,
|
|
1313
|
-
get: function () { return
|
|
1186
|
+
get: function () { return chunkH5QJE733_cjs.TABLE_RESOURCES; }
|
|
1314
1187
|
});
|
|
1315
1188
|
Object.defineProperty(exports, "TABLE_SCORERS", {
|
|
1316
1189
|
enumerable: true,
|
|
1317
|
-
get: function () { return
|
|
1190
|
+
get: function () { return chunkH5QJE733_cjs.TABLE_SCORERS; }
|
|
1318
1191
|
});
|
|
1319
1192
|
Object.defineProperty(exports, "TABLE_THREADS", {
|
|
1320
1193
|
enumerable: true,
|
|
1321
|
-
get: function () { return
|
|
1194
|
+
get: function () { return chunkH5QJE733_cjs.TABLE_THREADS; }
|
|
1322
1195
|
});
|
|
1323
1196
|
Object.defineProperty(exports, "TABLE_WORKFLOW_SNAPSHOT", {
|
|
1324
1197
|
enumerable: true,
|
|
1325
|
-
get: function () { return
|
|
1198
|
+
get: function () { return chunkH5QJE733_cjs.TABLE_WORKFLOW_SNAPSHOT; }
|
|
1326
1199
|
});
|
|
1327
1200
|
Object.defineProperty(exports, "mastraDocumentsTable", {
|
|
1328
1201
|
enumerable: true,
|
|
1329
|
-
get: function () { return
|
|
1202
|
+
get: function () { return chunkH5QJE733_cjs.mastraDocumentsTable; }
|
|
1330
1203
|
});
|
|
1331
1204
|
Object.defineProperty(exports, "mastraMessagesTable", {
|
|
1332
1205
|
enumerable: true,
|
|
1333
|
-
get: function () { return
|
|
1206
|
+
get: function () { return chunkH5QJE733_cjs.mastraMessagesTable; }
|
|
1334
1207
|
});
|
|
1335
1208
|
Object.defineProperty(exports, "mastraResourcesTable", {
|
|
1336
1209
|
enumerable: true,
|
|
1337
|
-
get: function () { return
|
|
1210
|
+
get: function () { return chunkH5QJE733_cjs.mastraResourcesTable; }
|
|
1338
1211
|
});
|
|
1339
1212
|
Object.defineProperty(exports, "mastraScoresTable", {
|
|
1340
1213
|
enumerable: true,
|
|
1341
|
-
get: function () { return
|
|
1214
|
+
get: function () { return chunkH5QJE733_cjs.mastraScoresTable; }
|
|
1342
1215
|
});
|
|
1343
1216
|
Object.defineProperty(exports, "mastraThreadsTable", {
|
|
1344
1217
|
enumerable: true,
|
|
1345
|
-
get: function () { return
|
|
1218
|
+
get: function () { return chunkH5QJE733_cjs.mastraThreadsTable; }
|
|
1346
1219
|
});
|
|
1347
1220
|
Object.defineProperty(exports, "mastraVectorIndexesTable", {
|
|
1348
1221
|
enumerable: true,
|
|
1349
|
-
get: function () { return
|
|
1222
|
+
get: function () { return chunkH5QJE733_cjs.mastraVectorIndexesTable; }
|
|
1350
1223
|
});
|
|
1351
1224
|
Object.defineProperty(exports, "mastraVectorsTable", {
|
|
1352
1225
|
enumerable: true,
|
|
1353
|
-
get: function () { return
|
|
1226
|
+
get: function () { return chunkH5QJE733_cjs.mastraVectorsTable; }
|
|
1354
1227
|
});
|
|
1355
1228
|
Object.defineProperty(exports, "mastraWorkflowSnapshotsTable", {
|
|
1356
1229
|
enumerable: true,
|
|
1357
|
-
get: function () { return
|
|
1230
|
+
get: function () { return chunkH5QJE733_cjs.mastraWorkflowSnapshotsTable; }
|
|
1358
1231
|
});
|
|
1359
1232
|
exports.ConvexStore = ConvexStore;
|
|
1360
1233
|
exports.ConvexVector = ConvexVector;
|