What it does
Supabase Vector (pgvector via PostgREST) upserts rows, calls match RPCs, and deletes rows. Uses api_key auth with the project's service role key.
Setup
- In Supabase → Project Settings → API, copy Project URL + service_role key.
- Create a pgvector table and a SQL function for similarity search (e.g.
match_documents). - In FlowFn, go to Platform Tools → Supabase Vector → Connect and provide project_url + api_key.
Actions
- Upsert Row, Match Vectors (RPC), Delete Row
Notes
The service role key bypasses RLS — keep it secret. Schema is yours; the tool is intentionally low-level.