-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
great work last week! 😋
This week, we want to create a function (or multiple if you feel like it's better to split up) in Python in the actions/supabase/queries/query.ts
that can:
- take as input a list of personal bios (the
text
column of thebios
table in Supabase) - generate vector embeddings of each bio using the
sentence-transformers/paraphrase-MiniLM-L3-v2
model (doc) - set the
embedding
column of thebios
table with those generated embeddings.
For now, you can just set some random text in the bios
column. I'm also curious how long this entire pipeline takes, so timing it for 10 rows would be very helpful!