mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
7 lines
206 B
Python
7 lines
206 B
Python
from browser_use import Agent, models
|
|
|
|
# available providers for this import style: openai, azure, google
|
|
agent = Agent(task='Find founders of browser-use', llm=models.azure_gpt_4_1_mini)
|
|
|
|
agent.run_sync()
|