Why Dakera?
| Dakera | Others | |
|---|---|---|
| LoCoMo accuracy | 87.6% (1,540 Q standard eval) | 60–92% |
| Deployment | Single binary, Docker one-liner | External vector DB + embedding service required |
| Embeddings | Built-in — no OpenAI key needed | Requires external embedding API |
| Search modes | Vector · BM25 · Hybrid · Knowledge Graph | Usually one or two |
| Transport | HTTP (reqwest) + gRPC (tonic), zero-copy | HTTP only |
→ Full benchmark results · dakera.ai
Run Dakera
For persistent storage with Docker Compose:
DAKERA_API_KEY=dk-mykey
Full deployment guide (Docker Compose, Kubernetes, Helm): dakera-deploy
Install
# Cargo.toml
[]
= "0.11"
= { = "1", = ["full"] }
= "1"
Feature flags:
| Feature | Default | Description |
|---|---|---|
http-client |
✅ | Async HTTP via reqwest |
grpc |
— | gRPC transport with connection pooling via tonic |
full |
— | Both HTTP and gRPC |
For gRPC (lower latency in high-throughput workloads):
= { = "0.11", = ["grpc"] }
Quick Start
use ;
async
Features
- Agent Memory — store, recall, search, and forget memories with importance scoring
- Sessions — group memories by conversation with auto-consolidation on session end
- Knowledge Graph — traverse memory relationships, find paths, export graphs
- Vector Search — ANN queries with metadata filters and batch operations
- Full-Text Search — BM25 ranking with stemming and stop-word filtering
- Hybrid Search — combine vector similarity with keyword matching
- Text Auto-Embedding — server-side embedding generation (no local model needed)
- Namespaces — isolated vector stores per project, tenant, or use case
- Feedback Loop — upvote/downvote/flag memories to improve recall quality
- Entity Extraction — GLiNER NER for automatic entity detection
- SSE Streaming — Server-sent event subscriptions with auto-reconnect
- Dual Transport — HTTP (default) and gRPC with connection pooling
- Typed Filters —
filter::eq(),filter::gt(),filter::contains()DSL From<T>for FusionStrategy — ergonomic enum conversions, idiomatic Rust API- Retry & Rate Limiting — built-in exponential backoff and rate-limit header tracking
- Builder Pattern — fluent
DakeraClientBuilderfor configuration
Connect to Dakera
use DakeraClient;
// Self-hosted
let client = builder
.api_key
.build?;
// Cloud (early access)
let client = builder
.api_key
.build?;
// With custom timeouts
let client = builder
.api_key
.timeout_secs
.max_retries
.build?;
Examples
See the examples/ directory:
basic.rs— vectors, namespaces, queries, filtersmemory.rs— store/recall memories, sessions, agent statsadvanced.rs— text embedding, full-text, hybrid search, filter DSL
Run examples with:
Resources
| Documentation | Full API reference and guides |
| Rust SDK docs | docs.rs API reference |
| Benchmark | LoCoMo evaluation results |
| dakera.ai | Website and early access |
| GitHub Org | All public repos |
| dakera-deploy | Self-hosting guide |
Other SDKs
| SDK | Package |
|---|---|
| dakera-py | dakera (PyPI) |
| dakera-js | @dakera-ai/dakera (npm) |
| dakera-go | github.com/dakera-ai/dakera-go |
| dakera-cli | CLI tool |
| dakera-mcp | MCP server for Claude/Cursor |