velaclaw 0.3.0

Protocol-driven autonomous AI agent runtime with intelligent model selection and multi-model negotiation.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod wizard;

pub use wizard::run_models_refresh;

#[cfg(test)]
mod tests {
    use super::*;

    fn assert_reexport_exists<F>(_value: F) {}

    #[test]
    fn wizard_functions_are_reexported() {
        assert_reexport_exists(wizard::run_wizard);
        assert_reexport_exists(wizard::run_channels_repair_wizard);
        assert_reexport_exists(wizard::run_quick_setup);
        assert_reexport_exists(run_models_refresh);
    }
}