orchestral-runtime 0.2.0

Thread Runtime with concurrency, interruption, scheduling, LLM planners, actions, and API for Orchestral
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod dto;
mod error;
mod runtime;
mod service;

pub use dto::{
    HistoryEventView, InteractionSubmitRequest, InteractionSubmitResponse, SubmitStatus, ThreadView,
};
pub use error::{ApiError, ErrorCode};
pub use runtime::{DefaultRuntimeAppBuilder, RuntimeApi, RuntimeAppBuilder};
pub use service::ApiService;