Skip to main content

orchestrator_config/config/
step_template.rs

1use serde::{Deserialize, Serialize};
2
3/// Step template configuration (runtime representation).
4#[derive(Debug, Clone, Serialize, Deserialize)]
5pub struct StepTemplateConfig {
6    /// Prompt or command template body.
7    pub prompt: String,
8    #[serde(default, skip_serializing_if = "Option::is_none")]
9    /// Optional human-readable description of the template.
10    pub description: Option<String>,
11}