mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
31 lines
569 B
Python
31 lines
569 B
Python
"""
|
|
Simple try of the agent.
|
|
|
|
@dev You need to add OPENAI_API_KEY to your environment variables.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
import asyncio
|
|
|
|
from langchain_openai import ChatOpenAI
|
|
|
|
from browser_use import Agent
|
|
|
|
llm = ChatOpenAI(model='gpt-4o')
|
|
agent = Agent(
|
|
task='Go to amazon.com, search for laptop, sort by best rating, and give me the price of the first result',
|
|
llm=llm,
|
|
)
|
|
|
|
|
|
async def main():
|
|
await agent.run(max_steps=10)
|
|
input('Press Enter to continue...')
|
|
|
|
|
|
asyncio.run(main())
|