jamjet-core 0.3.2

JamJet core execution model — workflow states, node types, retry/timeout policies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod agent_tool;
pub mod coordinator;
pub mod error;
pub mod node;
pub mod retry;
pub mod timeout;
pub mod workflow;

pub use error::Error;
pub use node::{NodeId, NodeKind, NodeStatus};
pub use retry::{BackoffStrategy, RetryPolicy};
pub use timeout::TimeoutConfig;
pub use workflow::{SessionType, WorkflowId, WorkflowMetadata, WorkflowStatus};