Andrew Powell
08/08/2025, 4:54 PMWhen using auto-embedding, you can setto a list of both regular fields and auto-embedding fields, to do a hybrid search on multiple fields.query_by
If you are populating the embedding field externally, without using auto-embedding, you can still do a hybrid search by passing the embedding of the query string manually via thedoes this mean that when we don’t use auto embedding, we have to create embeddings for the search term we want to search by, and include that embedding in the query payload? does this also mean that we can’t use the embedding field in the query_by? it would seem odd that we can’t provide the embeddings ourselves (so that we have control, retry, etc on our end) and also tell typesense what model we want to useparameter and omitting the embedding field fromvector_query
.query_by
Kishore Nallan
08/08/2025, 7:45 PMvector_query
parameter.Andrew Powell
08/08/2025, 7:46 PMKishore Nallan
08/08/2025, 7:51 PM