kwaak 0.16.2

Run a team of autonomous agents on your code, right from your terminal
Documentation
use anyhow::Result;

mod logging_responder;
mod output;
mod patch;
mod ragas;
mod tool_evaluation_agent;

pub use ragas::evaluate_query_pipeline;

#[cfg(test)]
mod tests;

pub use tool_evaluation_agent::start_tool_evaluation_agent;

pub async fn run_patch_evaluation(iterations: u32) -> Result<()> {
    println!("Running patch evaluation with {iterations} iterations");
    patch::evaluate(iterations).await
}