diff options
| author | Dhravya Shah <[email protected]> | 2025-04-05 16:52:42 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-04-05 16:52:42 -0700 |
| commit | 3ab02360ea6858071b485446108f5978089b4a89 (patch) | |
| tree | 8f5ed3ed43dd712dfb7123c2219479f1eddbcd29 /apps/docs/api-reference/endpoints/search | |
| parent | connections endpoints (diff) | |
| download | supermemory-3ab02360ea6858071b485446108f5978089b4a89.tar.xz supermemory-3ab02360ea6858071b485446108f5978089b4a89.zip | |
docs: More info about every endpoint
Diffstat (limited to 'apps/docs/api-reference/endpoints/search')
| -rw-r--r-- | apps/docs/api-reference/endpoints/search/get-fastsearch.mdx | 6 | ||||
| -rw-r--r-- | apps/docs/api-reference/endpoints/search/post-search.mdx | 11 |
2 files changed, 15 insertions, 2 deletions
diff --git a/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx b/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx index 0dafdc47..f1e705ce 100644 --- a/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx +++ b/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx @@ -1,3 +1,7 @@ --- openapi: get /fastsearch ----
\ No newline at end of file +--- + +Fast, lossy search using quantized embeddings. This can be used in case your app has text completions, or when searching fast is absolutely necessary. + + diff --git a/apps/docs/api-reference/endpoints/search/post-search.mdx b/apps/docs/api-reference/endpoints/search/post-search.mdx index ea2f8389..8e9867d2 100644 --- a/apps/docs/api-reference/endpoints/search/post-search.mdx +++ b/apps/docs/api-reference/endpoints/search/post-search.mdx @@ -1,3 +1,12 @@ --- openapi: post /search ----
\ No newline at end of file +--- + +Search through documents with metadata filtering. + +Body: +`q`: Your search query + +`limit`: Number of documents you want to get + +`filters`: Filters can be applied as `AND, OR, negate, numeric` types. You can read more about it here - [https://docs.supermemory.ai/essentials/metadata-filtering](https://docs.supermemory.ai/essentials/metadata-filtering)
\ No newline at end of file |