You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The embedding model and its parameters to use to generate embeddings for fields with vector search indexes. Note to LLM: If unsure which embedding model to use, ask the user before providing one."
"The embedding model and its parameters to use to generate embeddings for fields with vector search indexes. Note to LLM: If unsure which embedding model to use, ask the user before providing one."
Copy file name to clipboardExpand all lines: tests/integration/tools/mongodb/create/insertMany.test.ts
+31-7Lines changed: 31 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -28,13 +28,6 @@ describeWithMongoDB("insertMany tool when search is disabled", (integration) =>
28
28
"The array of documents to insert, matching the syntax of the document argument of db.collection.insertMany().",
29
29
required: true,
30
30
},
31
-
{
32
-
name: "embeddingParameters",
33
-
type: "object",
34
-
description:
35
-
"The embedding model and its parameters to use to generate embeddings for fields with vector search indexes. Note to LLM: If unsure which embedding model to use, ask the user before providing one.",
validateToolMetadata(integration,"insert-many","Insert an array of documents into a MongoDB collection",[
604
+
...databaseCollectionParameters,
605
+
{
606
+
name: "documents",
607
+
type: "array",
608
+
description:
609
+
"The array of documents to insert, matching the syntax of the document argument of db.collection.insertMany().",
610
+
required: true,
611
+
},
612
+
{
613
+
name: "embeddingParameters",
614
+
type: "object",
615
+
description:
616
+
"The embedding model and its parameters to use to generate embeddings for fields with vector search indexes. Note to LLM: If unsure which embedding model to use, ask the user before providing one.",
0 commit comments