weavegraph 0.3.0

Graph-driven, concurrent agent workflow framework with versioned state, deterministic barrier merges, and rich diagnostics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Framework-agnostic LLM abstractions and optional adapters.
//!
//! This module defines provider traits that are independent of any specific
//! LLM SDK. The Rig adapter is available behind the `rig` feature.

pub mod traits;

#[cfg(feature = "rig")]
#[cfg_attr(docsrs, doc(cfg(feature = "rig")))]
pub mod rig_adapter;

pub use traits::{LlmError, LlmProvider, LlmResponse, LlmStreamProvider};