//! Prompt-cache policy for native model requests.
/// Prompt-caching plan applied while building a provider request.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]pubenumCachePlan{/// Do not add explicit prompt-cache annotations.
#[default]
Off,/// Add breakpoints to the system message and imported-session prefix.
ImportedPrefix,}