You want to do something like this to paginate wit...
# community-help
j
You want to do something like this to paginate with semantic or hybrid search:
Copy code
{
  "query_by": "text_field, embedding",
  "vector_query": "embedding([], k: 200)",
  "page": 1,
  "per_page": 10
} ⁠
Then change
page
to 2, 3, 4, 5, etc to paginate. The key thing is that you've now grounded the vector search to look at 200 closest items using the
k
parameter