mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
9 lines
155 B
Python
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()
|