ai-agent 0.13.4

Idiomatic agent sdk inspired by the claude code source leak
Documentation
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,
}