Curious if reverse image search will ever be an im...
# community-help
c
Curious if reverse image search will ever be an implementation? Or if there is a way to incorporate this within TypeSense?
j
Yup, you can already do this with Typesense’s vector search feature: https://typesense.org/docs/0.24.1/api/vector-search.html I’d recommend using the CLIP model to generate image embeddings
Essentially, for all existing images, you’d generate embeddings with CLIP and index them in Typesense. Then when a user uploads a new image, you would again generate embeddings for it with CLIP, then send those vectors to Typesense to do a nearest neighbor search and display the image URLs to the user