browser-use / web-ui
- суббота, 5 апреля 2025 г. в 00:00:05
Run AI Agent in your browser.
This project builds upon the foundation of the browser-use, which is designed to make websites accessible for AI agents.
We would like to officially thank WarmShao for his contribution to this project.
WebUI: is built on Gradio and supports most of browser-use
functionalities. This UI is designed to be user-friendly and enables easy interaction with the browser agent.
Expanded LLM Support: We've integrated support for various Large Language Models (LLMs), including: Google, OpenAI, Azure OpenAI, Anthropic, DeepSeek, Ollama etc. And we plan to add support for even more models in the future.
Custom Browser Support: You can use your own browser with our tool, eliminating the need to re-login to sites or deal with other authentication challenges. This feature also supports high-definition screen recording.
Persistent Browser Sessions: You can choose to keep the browser window open between AI tasks, allowing you to see the complete history and state of AI interactions.
Read the quickstart guide or follow the steps below to get started.
git clone https://github.com/browser-use/web-ui.git
cd web-ui
We recommend using uv for managing the Python environment.
Using uv (recommended):
uv venv --python 3.11
Activate the virtual environment:
.venv\Scripts\activate
.\.venv\Scripts\Activate.ps1
source .venv/bin/activate
Install Python packages:
uv pip install -r requirements.txt
Install Browsers in Playwright: You can install specific browsers by running:
playwright install --with-deps chromium
To install all browsers:
playwright install
copy .env.example .env
cp .env.example .env
.env
in your preferred text editor and add your API keys and other settingsgit clone https://github.com/browser-use/web-ui.git
cd web-ui
copy .env.example .env
cp .env.example .env
Edit .env
with your preferred text editor and add your API keys
# Build and start the container with default settings (browser closes after AI tasks)
docker compose up --build
# Or run with persistent browser (browser stays open between AI tasks)
CHROME_PERSISTENT_SESSION=true docker compose up --build
http://localhost:7788
in your browserhttp://localhost:6080/vnc.html
VNC_PASSWORD
in your .env
filepython webui.py --ip 127.0.0.1 --port 7788
--ip
: The IP address to bind the WebUI to. Default is 127.0.0.1
.--port
: The port to bind the WebUI to. Default is 7788
.--theme
: The theme for the user interface. Default is Ocean
.
--dark-mode
: Enables dark mode for the user interface.http://127.0.0.1:7788
.CHROME_PATH
to the executable path of your browser and CHROME_USER_DATA
to the user data directory of your browser. Leave CHROME_USER_DATA
empty if you want to use local user data.
CHROME_PATH="C:\Program Files\Google\Chrome\Application\chrome.exe"
CHROME_USER_DATA="C:\Users\YourUsername\AppData\Local\Google\Chrome\User Data"
Note: Replace
YourUsername
with your actual Windows username for Windows systems.
CHROME_PATH="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
CHROME_USER_DATA="/Users/YourUsername/Library/Application Support/Google/Chrome"
CHROME_PERSISTENT_SESSION=true
in the .env
file.Environment Variables:
.env
file# LLM API Keys
OPENAI_API_KEY=your_key_here
ANTHROPIC_API_KEY=your_key_here
GOOGLE_API_KEY=your_key_here
# Browser Settings
CHROME_PERSISTENT_SESSION=true # Set to true to keep browser open between AI tasks
RESOLUTION=1920x1080x24 # Custom resolution format: WIDTHxHEIGHTxDEPTH
RESOLUTION_WIDTH=1920 # Custom width in pixels
RESOLUTION_HEIGHT=1080 # Custom height in pixels
# VNC Settings
VNC_PASSWORD=your_vnc_password # Optional, defaults to "vncpassword"
Platform Support:
Browser Persistence Modes:
Default Mode (CHROME_PERSISTENT_SESSION=false):
Persistent Mode (CHROME_PERSISTENT_SESSION=true):
.env
file or via environment variable when starting containerViewing Browser Interactions:
http://localhost:6080/vnc.html
Container Management:
# Start with persistent browser
CHROME_PERSISTENT_SESSION=true docker compose up -d
# Start with default mode (browser closes after tasks)
docker compose up -d
# View logs
docker compose logs -f
# Stop the container
docker compose down