kwaak 0.1.1

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
mod app;
mod ui_command;
mod ui_event;

/// 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_command::UserInputCommand;
pub use ui_event::UIEvent;