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 json
|
|
import os
|
|
import sys
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
|
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
try:
|
|
from lmnr import Laminar
|
|
|
|
Laminar.initialize(project_api_key=os.getenv('LMNR_PROJECT_API_KEY'))
|
|
except Exception as e:
|
|
print(f'Error initializing Laminar: {e}')
|
|
|
|
|
|
from browser_use import Agent
|
|
from browser_use.llm import ChatOpenAI
|
|
|
|
extend_system_message = (
|
|
'REMEMBER the most important RULE: ALWAYS open first a new tab and go first to url wikipedia.com no matter the task!!!'
|
|
)
|
|
|
|
# or use override_system_message to completely override the system prompt
|
|
|
|
|
|
async def main():
|
|
task = 'do google search to find images of Elon Musk'
|
|
model = ChatOpenAI(model='gpt-4.1')
|
|
agent = Agent(task=task, llm=model, extend_system_message=extend_system_message)
|
|
|
|
print(
|
|
json.dumps(
|
|
agent.message_manager.system_prompt.model_dump(exclude_unset=True),
|
|
indent=4,
|
|
)
|
|
)
|
|
|
|
await agent.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|