Appearance
Install
Requirements
- Python 3.10 or higher
- ChromeDriver installed and on your system
PATH(matches your installed Chrome version) - An OpenAI API key (or another supported LLM provider key)
Install the package
bash
pip install lavagueThis installs the core framework along with the Selenium driver integration and all required dependencies.
Set required environment variables
LaVague defaults to OpenAI gpt-4o as the action model. Export your key before running any agent:
bash
export OPENAI_API_KEY="sk-..."To disable telemetry collection (recommended for production or privacy-sensitive use):
bash
export LAVAGUE_TELEMETRY=NONEVerify the install
bash
python -c "import lavague; print('lavague installed')"Expected output:
lavague installedStarter notebook
A Google Colab quick-tour notebook is available with no local setup required: