1 2 3 4 5 6 7 8 9 10 11
//! LLM Command Node Binary //! //! Natural language command parsing via LLM APIs. use mecha10_nodes_llm_command::run; #[tokio::main] async fn main() -> anyhow::Result<()> { // Note: Tracing is initialized by the robot-dev launcher run().await }