Browser Use Agent

Make websites accessible for AI agents 🤖.

Browser use is the easiest way to connect your AI agents with the browser. And it’s Free…

https://github.com/gregpr07/browser-use

from langchain_openai import ChatOpenAI
from browser_use import Agent

agent = Agent(
task="Find a one-way flight from Bali to Oman on 12 January 2025 on Google Flights. Return me the cheapest option.",
llm=ChatOpenAI(model="gpt-4o"),
)

# ... inside an async function
await agent.run()