aethershell 0.3.1

The world's first multi-agent shell with typed functional pipelines and multi-modal AI
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(test)]
mod ai_router {
    use aethershell::ai;

    #[test]
    fn router_stub_compiles_and_returns_text() {
        let out =
            ai::complete_sync_router("Summarize this stub").unwrap_or_else(|_| "<disabled>".into());
        assert!(!out.is_empty());
    }
}