mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
9 lines
182 B
Python
9 lines
182 B
Python
from browser_use import Agent, ChatOpenAI
|
|
|
|
agent = Agent(
|
|
task='Give me a csv of 20 collage football games season 2025 ',
|
|
llm=ChatOpenAI(model='gpt-4.1-mini'),
|
|
)
|
|
|
|
agent.run_sync()
|