kwaak 0.8.2

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;
pub mod patch;
mod tool_evaluation_agent;

#[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
}