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
4pub mod context;
5pub mod shared_context;
6pub mod step;
7
8pub use context::{CallSource, ContextExtractionError, ContextIdSource, RequestContext};
9pub use shared_context::SharedRequestContext;
10pub use step::{
11 ExecutionStep, PlannedTool, StepContent, StepDetail, StepId, StepStatus, StepType, TrackedStep,
12};