Skip to main content

systemprompt_models/execution/
mod.rs

1//! Execution models — request context propagation, per-run execution
2//! steps, and the shared context carried through an agent run.
3//!
4//! Copyright (c) systemprompt.io — Business Source License 1.1.
5//! See <https://systemprompt.io> for licensing details.
6
7pub mod context;
8pub mod shared_context;
9pub mod step;
10
11pub use context::{CallSource, ContextExtractionError, ContextIdSource, RequestContext};
12pub use shared_context::SharedRequestContext;
13pub use step::{
14    ExecutionStep, PlannedTool, StepContent, StepDetail, StepId, StepStatus, StepType, TrackedStep,
15};