mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
22 lines
505 B
Python
22 lines
505 B
Python
import asyncio
|
|
|
|
from dotenv import load_dotenv
|
|
from langchain_openai import ChatOpenAI
|
|
|
|
from browser_use import Agent
|
|
|
|
load_dotenv()
|
|
|
|
llm = ChatOpenAI(model='gpt-4o', temperature=0.0)
|
|
small_llm = ChatOpenAI(model='gpt-4o-mini', temperature=0.0)
|
|
task = 'Find the founders of browser-use in ycombinator, extract all links and open the links one by one'
|
|
agent = Agent(task=task, llm=llm, page_extraction_llm=small_llm)
|
|
|
|
|
|
async def main():
|
|
await agent.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|