Getting Started¶
This quick path gets Pali running locally and verifies a full tenant memory flow.
If you already installed the release binary from the README, use:
If you prefer a source checkout, use:
Default address: http://127.0.0.1:8080
Health check:
1) Create a tenant¶
curl -X POST http://127.0.0.1:8080/v1/tenants \
-H "Content-Type: application/json" \
-d '{"id":"tenant_a","name":"Tenant A"}'
2) Store memory¶
curl -X POST http://127.0.0.1:8080/v1/memory \
-H "Content-Type: application/json" \
-d '{"tenant_id":"tenant_a","content":"User likes jasmine tea."}'
3) Search memory¶
curl -X POST http://127.0.0.1:8080/v1/memory/search \
-H "Content-Type: application/json" \
-d '{"tenant_id":"tenant_a","query":"tea"}'
Next steps¶
- Configuration for canonical defaults and validation behavior
- Deployment for production packaging and runtime setup
- Operations for runbook and rollback checklist
- Multi-Tenancy if you want JWT-scoped tenant isolation