1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//! Per-step LLM calls. plan / gather / synthesize / critique / finalize. #![allow( unreachable_pub, clippy::todo, clippy::unimplemented, dead_code, unused_variables )] use serde_json::Value; pub async fn run_step( _client: &(), _job_id: &str, _step: &str, _inputs: Value, ) -> Result<Value, std::io::Error> { todo!() }