mirror of
https://github.com/openai/openai-cookbook
synced 2024-11-11 13:11:02 +00:00
68ff729377
Co-authored-by: Logan Kilpatrick <23kilpatrick23@gmail.com>
2.1 KiB
2.1 KiB
Supabase Vector Database
Supabase is an open-source Firebase alternative built on top of Postgres, a production-grade SQL database.
Supabase Vector is a vector toolkit built on pgvector, a Postgres extension that allows you to store your embeddings inside the same database that holds the rest of your application data. When combined with pgvector's indexing algorithms, vector search remains fast at large scales.
Supabase adds an ecosystem of services and tools on top of Postgres that makes app development as quick as possible, including:
- Auto-generated REST APIs
- Auto-generated GraphQL APIs
- Realtime APIs
- Authentication
- File storage
- Edge functions
We can use these services alongside pgvector to store and query embeddings within Postgres.
OpenAI Cookbook Examples
Below are guides and resources that walk you through how to use OpenAI embedding models with Supabase Vector.
Guide | Description |
---|---|
Semantic search | Store, index, and query embeddings at scale using pgvector |