browser-agent 0.1.0

A browser AI agent, using GPT-4.
Documentation
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;