ai-agent 0.13.4

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Query helpers utilities

/// Parse ripgrep output
#[allow(dead_code)]
pub fn parse_rg_output(_output: &str) -> Vec<String> {
    vec![]
}

/// Search with ripgrep
#[allow(dead_code)]
pub fn search_with_rg(_pattern: &str, _path: &str) -> Result<String, String> {
    Err("Not implemented".to_string())
}