Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
56 lines
1.3 KiB
Python
56 lines
1.3 KiB
Python
import asyncio
|
|
import os
|
|
import sys
|
|
from pprint import pprint
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
|
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
from browser_use import Agent, ChatOpenAI
|
|
from browser_use.agent.views import AgentHistoryList
|
|
from browser_use.browser import BrowserProfile, BrowserSession
|
|
from browser_use.browser.profile import ViewportSize
|
|
|
|
llm = ChatOpenAI(model='gpt-4.1-mini')
|
|
|
|
|
|
async def main():
|
|
browser_session = BrowserSession(
|
|
browser_profile=BrowserProfile(
|
|
headless=False,
|
|
traces_dir='./tmp/result_processing',
|
|
window_size=ViewportSize(width=1280, height=1000),
|
|
user_data_dir='~/.config/browseruse/profiles/default',
|
|
)
|
|
)
|
|
await browser_session.start()
|
|
try:
|
|
agent = Agent(
|
|
task="go to google.com and type 'OpenAI' click search and give me the first url",
|
|
llm=llm,
|
|
browser_session=browser_session,
|
|
)
|
|
history: AgentHistoryList = await agent.run(max_steps=3)
|
|
|
|
print('Final Result:')
|
|
pprint(history.final_result(), indent=4)
|
|
|
|
print('\nErrors:')
|
|
pprint(history.errors(), indent=4)
|
|
|
|
# e.g. xPaths the model clicked on
|
|
print('\nModel Outputs:')
|
|
pprint(history.model_actions(), indent=4)
|
|
|
|
print('\nThoughts:')
|
|
pprint(history.model_thoughts(), indent=4)
|
|
finally:
|
|
await browser_session.stop()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|