supercode-runtime 0.4.10

Optional native model and tool runtime for Supercode
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Prompt-cache policy for native model requests.

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