From 659b4695272f141f72926f2713183f8729c03753 Mon Sep 17 00:00:00 2001 From: Sergei Grebnov Date: Sun, 15 Dec 2024 14:01:56 -0800 Subject: [PATCH] Update search limit documentation (#667) --- spiceaidocs/docs/api/http/search.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiceaidocs/docs/api/http/search.md b/spiceaidocs/docs/api/http/search.md index 30a6ed65..4ef210fd 100644 --- a/spiceaidocs/docs/api/http/search.md +++ b/spiceaidocs/docs/api/http/search.md @@ -13,7 +13,7 @@ Request Body - `datasets` (array of strings, Optional): Names of the dataset components to perform the similarity search on. Each dataset must have exactly one column augmented with an embedding. If None, all available datasets are used. - `text` (string): Query plaintext used to retrieve similar rows from the underlying datasets listed in the `from` request key. -- `limit` (integer): The number of rows to return, per `from` dataset. Default: 3. +- `limit` (integer): The number of rows to return. Default: 3. - `where` (string): An SQL filter predicate to apply within the search. - `additional_columns` (array of strings): Additional columns, from the datasets, to return in the response (under `.matches[*].metadata`).