outrig-cli 0.1.0

Command-line tool for running LLM agents with podman-isolated MCP servers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    println!("cargo:rerun-if-changed=build.rs");

    if cfg!(all(feature = "cuda", not(feature = "local-llm"))) {
        println!(
            "cargo:warning=feature `cuda` has no effect unless feature `local-llm` is also enabled"
        );
    }
    if cfg!(all(feature = "metal", not(feature = "local-llm"))) {
        println!(
            "cargo:warning=feature `metal` has no effect unless feature `local-llm` is also enabled"
        );
    }
}