How to Run MolmoWeb Locally: Deploy an Open-Source Browser Agent in Under 10 Minutes
MolmoWeb is Ai2’s open-source browser agent — 8B parameters, Apache 2.0, no API key required. It scores 78.2% on WebVoyager and beats GPT-4o-based agents on multiple benchmarks. Here’s how to get it running locally. System requirements: GPU with at least 16GB VRAM (for 8B model) or 8GB VRAM (for 4B model) Ubuntu 20.04+ or macOS 12+ (Linux recommended for GPU support) Python 3.10+ Chrome or Chromium browser installed Step 1: Clone the Repository git clone https://github.com/allenai/molmoweb.git cd molmoweb Step 2: Create a Virtual Environment and Install Dependencies python3 -m venv molmoweb-env source molmoweb-env/bin/activate pip install -r requirements.txt The requirements include PyTorch, the Transformers library, Playwright for browser control, and Pillow for screenshot processing. The full install typically takes 3–5 minutes on a good connection. ...