I’m trying to pass metadata to the supabase vector store node to save with the embeddings. this includes location data and client number.
The table is set up with a location column and it is ready for geographical information. Each time i pass the data the meta data is added as a row in the table and not to the column location, does anyone have any pointers to how I can correctly set this up?
Do you have RLS enabled? Maybe this is a policy issue. If you’re seeing location data getting passed but not being stored correctly you can check on your RLS policy.
No RLS is disabled until i can figure out how to get the metadata written, the mismatch of data type is a possibility for the locaiton although the client_id i’m also trying to pass is just a text field.
I think it is the supabase vector store node that is causing me the issue, if I use the supabase node i get the correct data written to the columns, if I use the vector store node I do not, it just goes as another row.
I need to be able to store the id and the location on each row of the embeddings, any further ideas?