Skip to main content

SingleStore

High-performance distributed database.

Quick Start

from praisonaiagents import Agent

agent = Agent(
    name="Assistant",
    instructions="You are a helpful assistant.",
    memory={
        "db": "singlestore://user:pass@host:3306/database",
        "session_id": "my-session"
    }
)

response = agent.start("Hello!")
print(response)