SingleStore conversation store
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)