pub fn simple_run( agent: SimpleAgentFunc, initial_state: State, ) -> Result<RunResult>
10fn main() -> Result<()> { 11 let mut input = State::new(); 12 input.insert("input".to_string(), "world".into()); 13 let result = simple_run(hello, input)?; 14 println!("{}", result.run_id); 15 Ok(()) 16}