├── .env.example ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── browser └── .gitignore ├── src ├── agent.rs ├── browser.rs ├── interpreter.rs ├── lib.rs ├── main.rs └── openai.rs └── user_data └── .gitignore /.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .env -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/README.md -------------------------------------------------------------------------------- /browser/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /src/agent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/src/agent.rs -------------------------------------------------------------------------------- /src/browser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/src/browser.rs -------------------------------------------------------------------------------- /src/interpreter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/src/interpreter.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/openai.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/browser-agent/HEAD/src/openai.rs -------------------------------------------------------------------------------- /user_data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore --------------------------------------------------------------------------------