| Crates.io | vex-temporal |
| lib.rs | vex-temporal |
| version | 0.1.3 |
| created_at | 2025-12-14 22:22:10.047944+00 |
| updated_at | 2025-12-18 22:26:30.292131+00 |
| description | Time-aware memory compression for VEX |
| homepage | |
| repository | https://github.com/provnai/vex |
| max_upload_size | |
| id | 1985197 |
| size | 86,552 |
Time-aware memory compression for the VEX Protocol.
[dependencies]
vex-temporal = "0.1"
use vex_temporal::TemporalMemory;
use vex_core::ContextPacket;
#[tokio::main]
async fn main() {
let mut memory = TemporalMemory::new();
// Add contexts - older ones get compressed automatically
memory.add_context(ContextPacket::new("Recent event")).await;
}
MIT License - see LICENSE for details.