openai_agents_rust/
prompts.rs

1/// Prompt configuration scaffold to align with Python prompts.
2#[derive(Debug, Clone, Default)]
3pub struct PromptConfig {
4    pub id: Option<String>,
5}