steel-memory 0.1.2

A spatial memory palace for AI agents with semantic vector search, knowledge graphs, and MCP tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::{env, process};

use steel_memory_lib::benchmark;

fn main() {
    if let Err(error) = run() {
        eprintln!("{error:#}");
        process::exit(1);
    }
}

fn run() -> anyhow::Result<()> {
    benchmark::run_cli(env::args().skip(1).collect())
}