tensorstore-memory / README.md
BinSaqban's picture
Upload README.md with huggingface_hub
db3e546 verified
|
Raw
History Blame Contribute Delete
504 Bytes
# TensorStore Agent Memory (TSAM)
Google TensorStore-inspired Multi-Resolution Semantic Memory for Multi-Agent AI
## Features
- 3D memory tensor (agent × time × embedding)
- Multi-resolution: recent, daily, weekly, all-time
- Semantic search (not grep)
- Agent similarity detection (SegCLR-inspired)
- Zero dependencies
## Usage
```python
from tensorstore_memory import AgentMemoryTensor
mem = AgentMemoryTensor()
mem.store("agent", "message", tags=["tag"])
results = mem.query("what happened?")
```