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.
SurrealDB conversation store
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.
docker run -d -p 8000:8000 surrealdb/surrealdb start
from praisonaiagents import Agent
agent = Agent(
name="Assistant",
instructions="You are a helpful assistant.",
memory={
"db": "surrealdb://localhost:8000",
"session_id": "my-session"
}
)
response = agent.start("Hello!")
print(response)