Index: The SOTA Open-Source Browser Agent for Autonomous Web Tasks
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
Index is a cutting-edge open-source browser agent designed to autonomously execute complex tasks on the web. It transforms any website into an accessible API, enabling seamless integration and automation. Leveraging powerful reasoning LLMs with vision capabilities, Index simplifies web interactions and data extraction for developers.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Index, developed by lmnr-ai, is a state-of-the-art open-source browser agent that empowers users to autonomously perform complex tasks on the web. It effectively turns any website into an accessible API, allowing for seamless integration into your projects with just a few lines of code. Index leverages powerful reasoning Large Language Models (LLMs) with vision capabilities, supporting models like Gemini 2.5 Pro, Claude 3.7 Sonnet, and OpenAI o4-mini, to navigate, interact with, and extract information from web pages intelligently.
Installation
Getting started with Index is straightforward. You can install it using pip and set up the necessary browser dependencies.
pip install lmnr-index 'lmnr[all]'
# Install playwright
playwright install chromium
After installation, remember to set up your model API keys (GEMINI_API_KEY, ANTHROPIC_API_KEY, OPENAI_API_KEY) in a .env file in your project root. For advanced observability, you can also include your LMNR_PROJECT_API_KEY.
Examples
Index offers flexible ways to interact with the agent, whether through code, an interactive CLI, or a serverless API.
Run Index with Code
You can integrate Index directly into your Python applications to perform tasks and extract structured data using Pydantic schemas.
import asyncio
from index import Agent, GeminiProvider
from pydantic import BaseModel
from lmnr import Laminar
import os
# to trace the agent's actions and record browser session
Laminar.initialize()
# Define Pydantic schema for structured output
class NewsSummary(BaseModel):
title: str
summary: str
async def main():
llm = GeminiProvider(model="gemini-2.5-pro-preview-05-06")
agent = Agent(llm=llm)
# Example of getting structured output
output = await agent.run(
prompt="Navigate to news.ycombinator.com, find a post about AI, extract its title and provide a concise summary.",
output_model=NewsSummary
)
summary = NewsSummary.model_validate(output.result.content)
print(f"Title: {summary.title}")
print(f"Summary: {summary.summary}")
if __name__ == "__main__":
asyncio.run(main())
Run Index with CLI
For interactive use and quick tasks, Index provides a powerful command-line interface with features like browser state persistence, follow-up messages, and real-time streaming updates.
index run
You can also run the CLI with your personal Chrome instance to leverage existing logged-in sessions:
index run --local-chrome
Use Index via API
For production environments, Index is available as a serverless API, managing remote browser sessions, agent infrastructure, and browser observability.
from lmnr import Laminar, LaminarClient
# Initialize tracing (optional, but recommended for observability)
Laminar.initialize(project_api_key="your_api_key")
# Initialize the client
client = LaminarClient(project_api_key="your_api_key")
for chunk in client.agent.run(
stream=True,
model_provider="gemini",
model="gemini-2.5-pro-preview-05-06",
prompt="Navigate to news.ycombinator.com, find a post about AI, and summarize it"
):
print(chunk)
Why Use Index?
Index stands out as a robust solution for web automation due to several key advantages:
- State-of-the-Art Performance: It's built to be a leading open-source browser agent, capable of handling complex web tasks autonomously.
- Flexible LLM Integration: Supports multiple powerful LLMs, including Gemini, Claude, and OpenAI models, allowing you to choose the best fit for your needs in terms of speed, cost, and accuracy.
- Structured Output: Enables reliable data extraction by supporting Pydantic schemas, ensuring your extracted data is clean and usable.
- Advanced Observability: Integrates with Laminar for comprehensive tracing of agent actions and browser sessions, providing deep insights into its operations.
- Ease of Use: With simple
pip installand intuitive CLI and API options, Index is designed for quick deployment and integration.
Links
- GitHub Repository: https://github.com/lmnr-ai/index
- Documentation: https://docs.lmnr.ai/index-agent/getting-started
- Chat UI: https://lmnr.ai/chat
- Serverless API: https://docs.lmnr.ai/index-agent/api/getting-started
- Join Discord: https://discord.gg/nNFUUDAKub
- Follow on X (Twitter): https://x.com/lmnrai
Related repositories
Similar repositories that may be relevant next.

agentmemory: Persistent Memory for AI Coding Agents
May 27, 2026
agentmemory provides persistent memory for AI coding agents, ensuring they remember past interactions and project context across sessions. This eliminates the need for re-explaining, significantly boosting agent efficiency and reducing token costs. Built on the `iii engine`, it offers high retrieval accuracy and multi-agent support without external databases.

AI Website Cloner Template: Clone Websites with AI Coding Agents
May 26, 2026
The AI Website Cloner Template is an innovative open-source project that leverages AI coding agents to reverse-engineer any website into a clean, modern Next.js codebase. It enables users to clone entire websites with a single command, extracting design tokens, assets, and reconstructing sections in parallel. This tool is ideal for platform migration, recovering lost source code, or learning web development by deconstructing live sites.

claude-code-webui: A Web Interface for Claude CLI with Streaming Responses
April 30, 2026
claude-code-webui transforms the command-line Claude CLI experience into an intuitive web-based chat interface. It offers real-time streaming responses, visual project selection, and mobile-responsive design. This tool enhances productivity by providing a rich, visual environment for interacting with Claude Code locally.

LangWatch: The Platform for LLM Evaluations and AI Agent Testing
April 28, 2026
LangWatch is an open-source platform designed for end-to-end LLM evaluations and AI agent testing. It helps teams test, simulate, evaluate, and monitor LLM-powered agents both before release and in production. Built for robust regression testing, simulations, and production observability, LangWatch eliminates the need for custom tooling.
Source repository
Open the original repository on GitHub.