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
44 lines
1.0 KiB
Python
44 lines
1.0 KiB
Python
import asyncio
|
|
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()
|
|
|
|
from browser_use import ActionResult, Agent, ChatOpenAI, Tools
|
|
|
|
tools = Tools()
|
|
|
|
|
|
@tools.registry.action('Done with task')
|
|
async def done(text: str):
|
|
import yagmail # type: ignore
|
|
|
|
# To send emails use
|
|
# STEP 1: go to https://support.google.com/accounts/answer/185833
|
|
# STEP 2: Create an app password (you can't use here your normal gmail password)
|
|
# STEP 3: Use the app password in the code below for the password
|
|
yag = yagmail.SMTP('your_email@gmail.com', 'your_app_password')
|
|
yag.send(
|
|
to='recipient@example.com',
|
|
subject='Test Email',
|
|
contents=f'result\n: {text}',
|
|
)
|
|
|
|
return ActionResult(is_done=True, extracted_content='Email sent!')
|
|
|
|
|
|
async def main():
|
|
task = 'go to brower-use.com and then done'
|
|
model = ChatOpenAI(model='gpt-4.1-mini')
|
|
agent = Agent(task=task, llm=model, tools=tools)
|
|
|
|
await agent.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|