usellm_tool::llm_tool;// The template has variables, but we did NOT provide context = ... or params(...).
#[llm_tool(description_file ="tools/dynamic_desc_test.tmpl.md")]fnmissing_context(x:i64,
)->Result<String, String>{Ok(format!("{x}"))}fnmain(){}