Files
browser-use/examples/simple.py
2025-08-26 14:23:40 -07:00

9 lines
145 B
Python

from browser_use import Agent, ChatOpenAI
agent = Agent(
task='Ask human for help',
llm=ChatOpenAI(model='gpt-4.1-mini'),
)
agent.run_sync()