Agent Settings

Configure agents to perform specialized browser tasks, select LLM models, enable vision, set logging, and customize their controller registry.

from browser_use import Agent, ChatOpenAI

agent = Agent(
  task="Search for news",
  llm=ChatOpenAI(model="gpt-4o"),
  use_vision=True,
  controller=custom_controller,
  save_conversation_path="logs/conversation"
)

Tailor each option to your workflow for maximum control and reliability.