Files
browser-use/examples/simple.py
Magnus Müller 52a0c1eb2f Update README.md
2025-09-18 18:29:11 -07:00

13 lines
303 B
Python

from dotenv import load_dotenv
from browser_use import Agent, ChatGoogle
load_dotenv()
agent = Agent(
task='Find the number of stars of the browser-use repo',
llm=ChatGoogle(model='gemini-2.5-flash'),
# browser=Browser(use_cloud=True), # Uses Browser-Use cloud for the browser
)
agent.run_sync()