|
|
|
|
|
by CharlieDigital
1020 days ago
|
|
Yes. You compute the embedding for the product name + description from Target.com and then the embedding for the product name + description from Walmart.com. They'll have a very close vector similarity. The easiest way to get started is with Supabase since it has a free tier and the pg_vector plugin built in. You calculate the embedding using OpenAI's embeddings API and store the result. Then it's just a vector similarity query in Postgres (trivially easy). |
|
Still uses pg_vector.