use std::sync::LazyLock; use crate::models::Prompts; pub(crate) static PROMPTS: LazyLock = LazyLock::new(|| { toml::from_str(include_str!("prompts.toml")).expect("Could not parse prompts.toml") });