Files
browser-use/examples/simple.py
2025-08-27 01:09:10 -07:00

9 lines
155 B
Python

from browser_use import Agent, ChatOpenAI
agent = Agent(
task='Find founders of browser-use',
llm=ChatOpenAI(model='gpt-4.1-mini'),
)
agent.run_sync()