Skip to main content

Supabase

Open-source Firebase alternative with PostgreSQL.

Setup

pip install supabase
export SUPABASE_URL=your_url
export SUPABASE_KEY=your_key

Usage

from praisonai.persistence.factory import create_conversation_store

store = create_conversation_store(
    "supabase",
    url="https://your-project.supabase.co",
    key="your_anon_key"
)