1 2 3 4 5 6 7 8 9 10
#![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)] mod agent; pub mod browser; mod interpreter; mod openai; pub use agent::Action; pub use interpreter::translate; pub use openai::Conversation;