mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
28 lines
612 B
Python
28 lines
612 B
Python
import asyncio
|
|
|
|
from dotenv import load_dotenv
|
|
from langchain_openai import ChatOpenAI
|
|
|
|
from browser_use import Agent
|
|
|
|
load_dotenv()
|
|
|
|
# Initialize the model
|
|
llm = ChatOpenAI(
|
|
model='gpt-4o',
|
|
temperature=0.0,
|
|
)
|
|
# the model will see x_name and x_password, but never the actual values.
|
|
sensitive_data = {'x_name': 'my_x_name', 'x_password': 'my_x_password'}
|
|
task = 'go to x.com and login with x_name and x_password then find interesting posts and like them'
|
|
|
|
agent = Agent(task=task, llm=llm, sensitive_data=sensitive_data)
|
|
|
|
|
|
async def main():
|
|
await agent.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|