oris-runtime 0.15.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
use serde_json::Value;

/// Error type for interrupts
///
/// When `interrupt()` is called and there's no resume value,
/// it returns this error to signal that execution should be paused.
#[derive(thiserror::Error, Debug, Clone)]
#[error("Interrupt: {0}")]
pub struct InterruptError(pub Value);

impl InterruptError {
    /// Create a new InterruptError
    pub fn new(value: impl Into<Value>) -> Self {
        Self(value.into())
    }

    /// Get the interrupt value
    pub fn value(&self) -> &Value {
        &self.0
    }

    /// Convert to GraphError
    pub fn into_graph_error(self) -> crate::graph::error::GraphError {
        crate::graph::error::GraphError::InterruptError(self)
    }
}