kwaak 0.1.11

Run a team of autonomous agents on your code, right from your terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(test)]
mod tests;

mod app;
mod splash;
mod ui_event;
mod ui_input_command;

/// Different frontend ui modes
mod chat_mode;
mod logs_mode;

/// Let's be very strict about what to export
/// to avoid coupling frontend and the rest
pub use app::App;
pub use ui_event::UIEvent;
pub use ui_input_command::UserInputCommand;