orchestral 0.1.0

Workflow orchestration for grounded agents — stateful multi-step pipelines with agent loop, MCP tools, and skills
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Orchestral
//!
//! Facade crate that re-exports [`orchestral_core`] and [`orchestral_runtime`]
//! for convenient single-dependency access.
//!
//! ```rust,ignore
//! use orchestral::prelude::*;
//! ```

pub use orchestral_core as core;
pub use orchestral_runtime as runtime;

pub use orchestral_core::prelude::*;

// SDK re-exports
pub use orchestral_runtime::sdk::{
    Orchestral, OrchestralApp, OrchestralBuilder, RunResult, SdkError,
};