From 919c09fa7274ad97f89971b36b78c846162febb1 Mon Sep 17 00:00:00 2001 From: jschachter Date: Sun, 26 Mar 2023 00:24:20 -0700 Subject: [PATCH] Update Collection.py fix misspelling --- chromadb/api/models/Collection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chromadb/api/models/Collection.py b/chromadb/api/models/Collection.py index 2d29c35647d..bfd96202526 100644 --- a/chromadb/api/models/Collection.py +++ b/chromadb/api/models/Collection.py @@ -168,7 +168,7 @@ def query( Args: query_embeddings: The embeddings to get the closes neighbors of. Optional. query_texts: The document texts to get the closes neighbors of. Optional. - n_results: The number of neighbots to return for each query_embedding or query_text. Optional. + n_results: The number of neighbors to return for each query_embedding or query_text. Optional. where: A Where type dict used to filter results by. E.g. {"color" : "red", "price": 4.20}. Optional. where_document: A WhereDocument type dict used to filter by the documents. E.g. {$contains: {"text": "hello"}}. Optional. include: A list of what to include in the results. Can contain "embeddings", "metadatas", "documents", "distances". Ids are always included. Defaults to ["metadatas", "documents", "distances"]. Optional.