EidolonDB
Quickstart
Quickstart
Install
npm install @eidolondb/clientOr run the full server with Docker:
docker run --name eidolondb -p 3000:3000 ghcr.io/millbj92/eidolondb:latest1. Ingest your first memory
curl -X POST http://localhost:3000/ingest \
-H "Content-Type: application/json" \
-H "x-tenant-id: demo" \
-d '{
"text": "Deploy freeze is active until Monday.",
"sessionId": "session-1"
}'2. Query memory
curl -X POST http://localhost:3000/memories/query \
-H "Content-Type: application/json" \
-H "x-tenant-id: demo" \
-d '{
"query": "Is deploy freeze active?",
"limit": 5
}'3. Next
- Learn the model in Concepts ->
- Explore endpoints in API reference ->