Sean Morningstar
11/05/2023, 3:05 AMsearch_parameters = {
'q' : 'harry potter',
'query_by': 'title,text_embedding',
'vector_query: f'text_embedding:({my_vec}, k:100)',
}
response = client.collections[typesense_collection].documents.search(search_parameters)
I'm encountering this error.
[Error 400] Query string exceeds max allowed length of 4000. Use the multi_search end-point for larger payloads.
When I attempt to use the multi_search it returns two separate results as expected but they are not combined like the normal search above.
Do I need to move to auto-embeddings or do I need to decrease the vector to something smaller such as all-MiniLM-L6-v2?