arcp 2.0.0

Reference implementation of the Agent Runtime Control Protocol (ARCP) v1.1 — umbrella crate that re-exports arcp-core, arcp-client, and arcp-runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Cheap-tier LLM call. Returns (answer, confidence). Stub.

#![allow(
    unreachable_pub,
    clippy::todo,
    clippy::unimplemented,
    dead_code,
    unused_variables
)]

pub async fn attempt(_request: &str) -> (String, f64) {
    todo!()
}