molo 0.4.0

An embeddable Rust agent runtime and harness framework for building safe, extensible tool-calling agents
Documentation
1
2
3
4
5
6
7
8
9
#[test]
fn tool_macro_rejects_invalid_definitions() {
    if !cfg!(feature = "macros") {
        return;
    }

    let tests = trybuild::TestCases::new();
    tests.compile_fail("tests/ui/tool_macro/*.rs");
}