
Memory for AI,
owned by no one.
Engram is a decentralized vector database on Bittensor. Store embeddings with cryptographic proofs — no AWS, no central authority.
// how it works
Four steps.
Fully decentralized.
From raw text to cryptographically verified storage.
Ingest
Send any text or pre-computed vector. Engram hashes it into a permanent CID — identical inputs always yield the same identifier, forever.
from engram.sdk.client import EngramClientclient = EngramClient(netuid=42)cid = client.ingest("Transformers changed NLP in 2017",metadata={"source": "arxiv", "year": 2017})# → "v1::a3f9d2e8c7b14f09d6e3..."# Same input always → same CIDassert client.ingest("Transformers changed NLP in 2017") == cid
// capabilities
Built different.
Everything you expect from a vector DB — plus cryptographic guarantees no centralized system can offer.
// developer SDK
Replace Pinecone
in an afternoon.
One Python client. Works with any embedding model. No API key, no vendor lock-in.
pip install engram-subnet
from engram.sdk.client import EngramClient# Connect to the Engram subnetclient = EngramClient(netuid=42)# Ingest text → returns content-addressed CIDcid = client.ingest("Transformers revolutionized NLP in 2017",metadata={"source": "arxiv", "year": 2017})# → "v1::a3f9d2e8c7b14f09..."# Semantic search → top-K by cosine similarityresults = client.query("attention mechanisms", top_k=5)for r in results:print(f"{r['score']:.4f} {r['cid'][:24]}...")# Vector search (bypass embedding step)results = client.query_by_vector(my_vector, top_k=10)
// participate
Earn TAO.
Run the network.
Miners and validators earn from subnet emissions. Performance = yield.
Store embeddings, serve queries, pass storage proof challenges.
Score miners on recall@K, latency, and proof rate. Set weights on-chain.
Integrate Engram as your vector store using the Python SDK or CLI.
git clone https://github.com/Dipraise1/-Engram-cd engrampip install -e ".[miner]"python neurons/miner.py --wallet.name mywallet --netuid 42

The future of AI memory
is decentralized.
open source · bittensor subnet · testnet active · v0.1
