Skip to content

Commit 31a63b6

Browse files
committed
Merge branch 'develop' of https://github.com/ssdeanx/AgentStack into develop
2 parents c69858a + bd9a1ce commit 31a63b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mastra/config/vector/astra.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ export async function querySimilarDocuments(
249249
hasFilter: !!filter
250250
});
251251

252-
return results.map((result: any) => ({
252+
return results.map((result: { id: string; score: number; metadata?: { text?: string; [key: string]: unknown } }) => ({
253253
id: result.id,
254254
score: result.score,
255255
text: result.metadata?.text as string || '',

0 commit comments

Comments
 (0)