> ## 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.

# SingleStore

> SingleStore conversation store

# SingleStore

High-performance distributed database.

## Quick Start

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
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)
```
