For reference, here's the search payload I use: `...
# community-help
e
For reference, here's the search payload I use:
Copy code
{
    "collection": "my_collection",
    "include_fields": "id,title",
    "sort_by": "_text_match:desc,_vector_distance:asc",
    "exclude_fields": "embedding",
    "q": "my query",
    "query_by": "embedding,title",
    "drop_tokens_threshold": "0",
    "num_typos": "0",
    "typo_tokens_threshold": "0",
    "vector_query": <my 1024 dim vector>
}