ai-agent 0.88.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
pub fn remove_sandbox_violation_tags(text: &str) -> String {
    let re = regex::Regex::new(r"<sandbox_violations>[\s\S]*?</sandbox_violations>").unwrap();
    re.replace_all(text, "").to_string()
}