unified-agent-api 0.3.6

Agent-agnostic facade and registry for wrapper backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This file is derived from committed repo truth.
// Validate it with `cargo test -p xtask --all-targets`.

#[cfg(feature = "codex")]
const CODEX_RUNTIME_SUPPORT: &[EmbeddedRuntimeSupportRecord] = &[
    EmbeddedRuntimeSupportRecord {
        target_triple: "aarch64-apple-darwin",
        latest_validated: None,
    },
    EmbeddedRuntimeSupportRecord {
        target_triple: "x86_64-pc-windows-msvc",
        latest_validated: None,
    },
    EmbeddedRuntimeSupportRecord {
        target_triple: "x86_64-unknown-linux-musl",
        latest_validated: Some("0.125.0"),
    },
];