Luca Lusso
02/14/2025, 7:54 AMopenai/text-embedding-3-large
. Performing a keyword search return results in less than 100ms. A semantic search on the embedding field took more than 1 second and half. What can I do to speed up it?
I'm on a Typesense cloud instance with 0.5 GB RAM and 2 vCPUsKishore Nallan
02/14/2025, 10:12 AMk
value for the search? With 630 documents, the vector search should be < 10 ms.Luca Lusso
02/14/2025, 10:14 AM{
"searches": [
{
"q": "some question...?",
"collection": "courses",
"query_by": "embedding",
"exclude_fields": "embedding,rendered_item",
"prefix": false
}
]
}
Kishore Nallan
02/14/2025, 11:44 AMKishore Nallan
02/14/2025, 11:44 AMLuca Lusso
02/14/2025, 11:45 AM