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
36 lines
779 B
Python
36 lines
779 B
Python
"""
|
|
Goal: Automates CAPTCHA solving on a demo website.
|
|
|
|
|
|
Simple try of the agent.
|
|
@dev You need to add OPENAI_API_KEY to your environment variables.
|
|
NOTE: captchas are hard. For this example it works. But e.g. for iframes it does not.
|
|
for this example it helps to zoom in.
|
|
"""
|
|
|
|
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 Agent, ChatOpenAI
|
|
|
|
|
|
async def main():
|
|
llm = ChatOpenAI(model='gpt-4.1-mini')
|
|
agent = Agent(
|
|
task='go to https://captcha.com/demos/features/captcha-demo.aspx and solve the captcha',
|
|
llm=llm,
|
|
)
|
|
await agent.run()
|
|
input('Press Enter to exit')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|