chaotic_semantic_memory
chaotic_semantic_memory is a Rust crate for AI memory systems built on
Hyperdimensional Computing (HDC) — not transformer embeddings:
- 10240-bit binary hypervectors with SIMD-accelerated operations
- chaotic echo-state reservoirs for temporal processing
- libSQL persistence (local SQLite or remote Turso)
It targets both native and wasm32 builds with explicit threading guards.
Quick Links
| Resource | Link |
|---|---|
| Documentation | docs.rs/chaotic_semantic_memory |
| Crates.io | crates.io/crates/chaotic_semantic_memory |
| Issues | GitHub Issues |
| Changelog | CHANGELOG.md |
Important: HDC, Not Semantic Embeddings
This crate uses Hyperdimensional Computing (HDC) for text encoding — it is not a transformer or embedding model. Understanding this distinction is critical:
| HDC (this crate) | Transformer Embeddings (e.g. sentence-transformers) | |
|---|---|---|
| Method | Hash-based token → random hypervector | Learned neural network encodings |
| Similarity | Tokens + position match → similar vectors | Semantic meaning → similar vectors |
| "cat" vs "kitten" | Low similarity (different tokens) | High similarity (synonyms) |
| "cat sat" vs "sat cat" | Different (position-aware) | Often similar |
| Compute | CPU-only, deterministic, no GPU | GPU-accelerated, learned weights |
| Use case | Keyword/lexical search, exact-match recall | Semantic search, paraphrase detection |
Bottom line: inject_text / probe_text match on shared tokens at similar
positions. For true semantic similarity, use an external embedding model and inject
vectors directly via inject_concept.
Features
- Hyperdimensional Computing: 10240-bit binary hypervectors with SIMD-accelerated operations
- Chaotic Reservoirs: Configurable echo-state networks with spectral radius controls
[0.9, 1.1] - Semantic Memory: Concept graphs with weighted associations and similarity search
- Optimized Retrieval: Two-stage retrieval pipeline with heuristic-based candidate generation (bucket, graph) and dense-vector scoring.
- Persistence: libSQL for local SQLite or remote Turso database
- WASM Support: Browser-compatible with memory-based import/export
- CLI: Full-featured command-line interface with shell completions
- Production-Ready: Structured logging, metrics, input validation, memory guardrails
Installation
For WASM targets, build with --target wasm32-unknown-unknown. No additional feature flag is needed;
WASM support is enabled automatically when compiling for the wasm32 target architecture.
[]
= { = "0.2" }
For library-only consumers who don't need the CLI binary or its dependencies:
[]
= { = "0.2", = false }
Note: Using
"0.2"ensures compatibility with the latest 0.2.x patch versions.
Core Components
hyperdim: binary hypervector math (HVec10240) and similarity operationsreservoir: sparse chaotic reservoir dynamics with spectral radius controlssingularity: concept graph, associations, retrieval, and memory limitsframework: high-level async orchestration APIpersistence: libSQL-backed storage (native only)wasm: JS-facing bindings for browser/runtime integration (wasm32 target only)encoder: text and binary encoding utilitiesgraph_traversal: graph walk and reachability utilitiesmetadata_filter: metadata query and filteringbundle: snapshot and bundle helperscli: Command-line interface (csmbinary)
How Text Encoding Works (HDC Pipeline)
The built-in TextEncoder uses Hyperdimensional Computing (HDC) — a deterministic,
hash-based encoding, not a learned neural network:
┌─────────────┐ ┌──────────────────┐ ┌──────────────────┐ ┌─────────┐
│ "hello │ │ FNV-1a hash │ │ Positional │ │ Bundle │
│ world" │──▶ │ per token │────▶│ permutation │───▶│ majority│
│ │ │ PRNG → HVec10240 │ │ (word order) │ │ rule │
└─────────────┘ └──────────────────┘ └──────────────────┘ └─────────┘
Tokenize Token→HVec Position Encode Final HV
Pipeline steps:
- Tokenize: Split on whitespace, lowercase (
hello world→["hello", "world"]) - Token → HVec: FNV-1a hash → seed PRNG → generate random
HVec10240per token - Positional encoding: Permute each token vector by its position (order matters)
- Bundle: Majority-rule combination into a single
HVec10240
Key properties:
- Deterministic: Same text always produces the same vector (FNV-1a is stable across Rust versions)
- Token-sensitive: Similar tokens in similar positions → similar vectors
- NOT semantic: Synonyms/paraphrases ("cat" vs "kitten") will NOT match
- Position-aware: "cat sat" ≠ "sat cat" (order matters)
Recommended API
// HDC text encoding — good for lexical/keyword similarity
framework.inject_text.await?;
let hits = framework.probe_text.await?;
// External embeddings — good for semantic similarity
let embedding: HVec10240 = my_model.encode;
framework.inject_concept.await?;
Use inject_text/probe_text for:
- Keyword search and exact-match recall
- Document deduplication (same/similar text)
- Indexing text where token overlap matters
Use external embeddings (inject_concept) for:
- Semantic search (synonyms, paraphrases)
- Concept-level similarity across different wording
- Cross-lingual matching
Turso Vector Alternative
This crate uses libSQL (local SQLite or remote Turso) for persistence. For semantic similarity, you can add Turso's native vector search tables alongside the crate's HDC storage using the same database:
use Builder;
// Connect to the same database this crate uses for persistence
let db = new_local.build.await?;
let conn = db.connect?;
// Add semantic vector table alongside the crate's concepts table
conn.execute_batch.await?;
// Query with vector_top_k
let rows = conn.query.await?;
This keeps HDC and semantic vectors in the same database: the crate manages
concepts and associations tables, while you manage semantic_vectors for
float-vector similarity search. Both query the same libSQL/Turso instance.
CLI Usage
The csm binary provides command-line access:
# Inject a concept
# Find similar concepts
# Create associations
# Export memory state
# Import memory state
# Generate shell completions
CLI Commands
| Command | Description |
|---|---|
inject |
Inject a new concept with a random or provided vector |
probe |
Find similar concepts by concept ID |
associate |
Create an association between two concepts |
export |
Export memory state to JSON or binary |
import |
Import memory state from file |
version |
Show version information |
completions |
Generate shell completions |
Quick Start
use *;
async
See examples/proof_of_concept.rs for an end-to-end flow.
See examples/basic_in_memory.rs for the minimal in-memory workflow.
Configuration
ChaoticSemanticFramework::builder() exposes runtime tuning knobs.
| Parameter | Default | Valid Range | Effect |
|---|---|---|---|
reservoir_size |
50_000 |
> 0 |
Reservoir capacity and memory footprint |
reservoir_input_size |
10_240 |
> 0 |
Width of each sequence step |
chaos_strength |
0.1 |
0.0..=1.0 (recommended) |
Noise amplitude in chaotic updates |
enable_persistence |
true |
boolean | Enables libSQL persistence setup |
max_concepts |
None |
optional positive | Evicts oldest concepts when reached |
max_associations_per_concept |
None |
optional positive | Keeps strongest associations only |
connection_pool_size |
10 |
>= 1 |
Turso/libSQL remote pool size |
max_probe_top_k |
10_000 |
>= 1 |
Input guard for probe and batch probes |
max_metadata_bytes |
None |
optional positive | Metadata payload size guard |
concept_cache_size |
128 |
>= 1 |
Similarity query cache capacity (set via with_concept_cache_size, stored separately from FrameworkConfig) |
Tuning Guide
- Small workloads: disable persistence and use
reservoir_sizearound10_240. - Mid-sized workloads: keep defaults and set
max_conceptsto enforce memory ceilings. - Large workloads: keep persistence enabled, increase
connection_pool_size, and tunemax_probe_top_kto practical limits.
API Patterns
In-memory flow:
let framework = builder
.without_persistence
.build
.await?;
Persistent flow:
let framework = builder
.with_local_db
.build
.await?;
Batch APIs for bulk workloads:
framework.inject_concepts.await?;
framework.associate_many.await?;
let hits = framework.probe_batch.await?;
Load semantics:
load_replace(): clear in-memory state, then load persisted data.load_merge(): merge persisted state into current in-memory state.
WASM Build
Notes:
- WASM threading-sensitive paths are guarded with
#[cfg(not(target_arch = "wasm32"))]. - Persistence is intentionally unavailable on
wasm32in this crate build. - WASM parity APIs include
processSequence,exportToBytes, andimportFromBytes.
Concurrency Model
Internal state is protected by tokio::sync::RwLock — safe for concurrent
access from multiple Tokio tasks via Arc<ChaoticSemanticFramework>.
Multi-Instance Safety
Multiple ChaoticSemanticFramework instances sharing the same database file
are safe for concurrent operation:
- Reads (
probe,get_concept,get_associations,stats) acquireRwLockread guards and can run fully concurrently across tasks and framework instances. - Writes (
inject_concept,associate,delete_concept) acquire write guards in-process and are serialized at the database layer by SQLite's WAL write lock. Two instances writing to the same database will queue on WAL without data corruption.
SQLite WAL Mode
Local SQLite connections explicitly enable PRAGMA journal_mode=WAL during
initialization (src/persistence.rs). This provides:
- Concurrent readers never block each other or a writer.
- A single writer never blocks readers (readers see the last consistent snapshot).
- Checkpoints via
PRAGMA wal_checkpoint(TRUNCATE)merge WAL data back into the main database file.
Remote Turso connections delegate concurrency to the server and do not set WAL mode locally.
Lock Discipline
Write locks on singularity are held only for in-memory operations and are
never held across .await points (see ADR-0040).
Persistence I/O happens after the write lock is released, so concurrent probes
are never blocked by database writes.
Scaling Characteristics
| Operation | Complexity | Notes |
|---|---|---|
inject_concept |
O(1) amortized | HashMap insert + dense vector append |
associate |
O(1) amortized | HashMap insert with optional eviction |
probe (exact scan) |
O(n) | Cosine similarity over all n concepts; parallelized via Rayon on native |
probe (bucket candidates) |
O(n / 2^w) | w-bit bucket width narrows candidate set before exact scoring |
probe (graph candidates) |
O(f^d) | BFS from nearest neighbor at depth d, fanout f |
The default retrieval path is an exact O(n) scan over all stored concept
vectors. For larger corpora, two-stage candidate generation can be enabled via
RetrievalConfig:
- Bucket candidates: Coarse hash-bucketing on the first w bits of the hypervector narrows the candidate set before exact scoring.
- Graph candidates: BFS expansion from the nearest-neighbor seed through the association graph, bounded by depth and fanout.
Both reduce the scored subset from n to a smaller candidate set while preserving exact similarity semantics on the reranking pass.
ANN/LSH Deferred
Approximate nearest-neighbor (ANN) or locality-sensitive hashing (LSH) indexing is intentionally deferred until benchmarks demonstrate latency regression beyond the current threshold. As documented in ADR-0056, the trigger is >200k concepts with latency degradation. Current benchmarks show the exact scan completes in ~24ms at 200k concepts, well within acceptable bounds (see ADR-0059 for retrieval optimization details and benchmark methodology).
Async Runtime
The framework is fully async. Do not wrap calls in block_on inside an
existing Tokio runtime — use .await directly or spawn a task. All public
APIs return Result<T, MemoryError> and use Tokio for I/O, with Rayon
gated behind #[cfg(not(target_arch = "wasm32"))] for CPU parallelism.
Development Gates
LOC policy: each source file in src/ must stay at or below 500 lines.
Mutation Testing
Install cargo-mutants once:
Run profiles:
Reports are written under progress/mutation/.
Benchmark Gates
Primary perf gate: reservoir_step_50k < 100us.
License
Contributing
Contributions are welcome! Please read our Contributing Guide for:
- Code style and linting requirements
- Test and benchmark commands
- Pull request process
- ADR submission for architectural changes