mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
47 lines
1.0 KiB
Python
47 lines
1.0 KiB
Python
import asyncio
|
|
import os
|
|
|
|
from dotenv import load_dotenv
|
|
from langchain_google_genai import ChatGoogleGenerativeAI
|
|
from pydantic import SecretStr
|
|
|
|
from browser_use import Agent
|
|
|
|
load_dotenv()
|
|
api_key = os.getenv('GEMINI_API_KEY')
|
|
if not api_key:
|
|
raise ValueError('GEMINI_API_KEY is not set')
|
|
|
|
llm = ChatGoogleGenerativeAI(model='gemini-2.0-flash-exp', api_key=SecretStr(api_key))
|
|
|
|
|
|
task_1 = """
|
|
Navigate to: https://sortablejs.github.io/Sortable/.
|
|
Then scroll down to the first examplw with title "Simple list example".
|
|
Drag the element with name "item 1" to below the element with name "item 3".
|
|
"""
|
|
|
|
|
|
task_2 = """
|
|
Navigate to: https://excalidraw.com/.
|
|
Click on the pencil icon (with index 40).
|
|
Then draw a triangle in the canvas.
|
|
Draw the triangle starting from coordinate (400,400).
|
|
You can use the drag and drop action to draw the triangle.
|
|
"""
|
|
|
|
|
|
async def run_search():
|
|
agent = Agent(
|
|
task=task_1,
|
|
llm=llm,
|
|
max_actions_per_step=1,
|
|
use_vision=True,
|
|
)
|
|
|
|
await agent.run(max_steps=25)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(run_search())
|