kwaak 0.18.0

Run a team of autonomous agents on your code, right from your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use anyhow::Result;

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

pub use ragas::evaluate_query_pipeline;

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
}