mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
e1f4f9ac3e
Added missed pages for `integrations/providers` from `vectorstores`. Updated several `vectorstores` notebooks.
27 lines
747 B
Plaintext
27 lines
747 B
Plaintext
# Supabase (Postgres)
|
|
|
|
>[Supabase](https://supabase.com/docs) is an open source `Firebase` alternative.
|
|
> `Supabase` is built on top of `PostgreSQL`, which offers strong `SQL`
|
|
> querying capabilities and enables a simple interface with already-existing tools and frameworks.
|
|
|
|
>[PostgreSQL](https://en.wikipedia.org/wiki/PostgreSQL) also known as `Postgres`,
|
|
> is a free and open-source relational database management system (RDBMS)
|
|
> emphasizing extensibility and `SQL` compliance.
|
|
|
|
## Installation and Setup
|
|
|
|
We need to install `supabase` python package.
|
|
|
|
```bash
|
|
pip install supabase
|
|
```
|
|
|
|
## Vector Store
|
|
|
|
See a [usage example](/docs/integrations/vectorstores/supabase).
|
|
|
|
```python
|
|
from langchain.vectorstores import SupabaseVectorStore
|
|
```
|
|
|