reflex-cache 0.2.2

Episodic memory and high-speed semantic cache for LLM responses
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Load configuration from environment variables.

use anyhow::Result;

fn main() -> Result<()> {
    let config = reflex::Config::from_env()?;
    println!(
        "bind_addr={}, port={}, qdrant_url={}",
        config.bind_addr, config.port, config.qdrant_url
    );
    Ok(())
}