Hey, quick question
Is it possible to configure a vector search field such that I can import my own embeddings at index time, then provide my own model to perform semantic search at query time? (not every one of my items will have an embedding field guaranteed too - so would like it to be optional)
From my tinkering, it seems like it's one or the other (i.e. I either use auto-embed to generate from a field/import my own for that item and be able to auto semantic search, or I import my own embeddings, and have it be optional for some items - but have to perform the query time vector generation myself)