Google Cloud Firestore state store
pip install google-cloud-firestore
export GOOGLE_APPLICATION_CREDENTIALS=path/to/service-account.json
from praisonaiagents import Agent
agent = Agent(
name="Assistant",
instructions="You are a helpful assistant.",
memory={
"backend": "firestore",
"db": "firestore://project-id",
"session_id": "my-session"
}
)
response = agent.start("Hello!")
print(response)