Readme

Source

Classification

Summary

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 a…

What This Teaches

  • How to connect OpenAI models with retrieval, embeddings, or external knowledge stores.

Implementation Use Cases

  • Use as a concrete implementation reference when building OpenAI API systems in this category.
  • Compare against current official API docs before copying model names, SDK calls, or parameters into production code.
  • Preserve this page as a mirrored source; prefer synthesis pages for personal recommendations or project-specific decisions.

Mirrored Content

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:

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.

GuideDescription
Semantic searchStore, index, and query embeddings at scale using pgvector

Additional resources