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!() }