Documentation Index
Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
Use this file to discover all available pages before exploring further.
Supabase conversation store for PraisonAI
Documentation Index
Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
Use this file to discover all available pages before exploring further.
pip install supabase
export SUPABASE_URL=your_url
export SUPABASE_KEY=your_key
from praisonaiagents import Agent
import os
agent = Agent(
name="Assistant",
instructions="You are a helpful assistant.",
memory={
"db": f"supabase://{os.getenv('SUPABASE_URL')}",
"session_id": "my-session"
}
)
response = agent.start("Hello!")
print(response)