synwire 0.1.0

Convenience re-exports and reference implementations for Synwire
Documentation
//! E2E test: Graph-based agent execution via Ollama.
//!
//! Requires a running Ollama instance. Run with `cargo nextest run --run-ignored all`.

#![allow(clippy::unwrap_used, clippy::expect_used, clippy::panic)]

#[ignore = "requires running Ollama instance"]
#[tokio::test]
async fn e2e_graph_execution() {
    // Stub: when graph orchestration is wired end-to-end, this test will:
    // 1. Build a StateGraph with LLM-powered nodes
    // 2. Add conditional edges for routing
    // 3. Compile and invoke the graph
    // 4. Verify the graph produces expected output
}

#[ignore = "requires running Ollama instance"]
#[tokio::test]
async fn e2e_graph_with_checkpointing() {
    // Stub: test graph execution with checkpoint persistence.
    // 1. Run graph to a breakpoint
    // 2. Save checkpoint
    // 3. Restore from checkpoint
    // 4. Continue execution
    // 5. Verify final state
}