Files
browser-use/examples/multi-tab_handling.py
2024-11-17 15:05:36 +01:00

31 lines
579 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
# video: https://preview.screen.studio/share/clenCmS6
llm = ChatOpenAI(model='gpt-4o')
agent = Agent(
task='open 3 tabs with elon musk, trump, and steve jobs, then go back to the first and click on the first link',
llm=llm,
)
async def main():
await agent.run()
asyncio.run(main())