pub fn get_api_context_management(
_options: Option<ContextManagementOptions>,
) -> Option<ContextManagementConfig> {
None
}
#[derive(Debug, Clone)]
pub struct ContextManagementOptions {
pub has_thinking: bool,
}
#[derive(Debug, Clone)]
pub struct ContextManagementConfig {
pub edits: Vec<ContextEditStrategy>,
}
#[derive(Debug, Clone)]
pub struct ContextEditStrategy {
pub strategy_type: String,
}