orchestrator-config 0.1.1

Configuration models and loading for the Agent Orchestrator
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

/// Step template configuration (runtime representation).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StepTemplateConfig {
    /// Prompt or command template body.
    pub prompt: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    /// Optional human-readable description of the template.
    pub description: Option<String>,
}