Files
browser-use/examples/models/lazy_import.py
2025-09-03 09:13:30 -07:00

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()