You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had run captcha.py and other scripts as well but giving error as "LangChainBetaWarning: The function load is in beta. It is actively being worked on, so the API may change.value['message'] = load(value['message'])", Could you please check and help me to resolve this.
Reproduction Steps
Go to use-cases directory
Run Captcha.py
Script will run initially
but ended up giving message on terminal as "LangChainBetaWarning: The function load is in beta. It is actively being worked on, so the API may change.
value['message'] = load(value['message'])"
Code Sample
"""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."""importosimportsyssys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
importasynciofromlangchain_openaiimportChatOpenAIfrombrowser_useimportAgentfromdotenvimportload_dotenv# Load environment variablesload_dotenv()
ifnotos.getenv('OPENAI_API_KEY'):
raiseValueError('OPENAI_API_KEY is not set. Please add it to your environment variables.')
asyncdefmain():
llm=ChatOpenAI(model='gpt-4o')
agent=Agent(
task='go to https://captcha.com/demos/features/captcha-demo.aspx and solve the captcha',
llm=llm,
)
awaitagent.run()
input('Press Enter to exit')
if__name__=="__main__":
asyncio.run(main())
Version
0.1.40
LLM Model
GPT-4o
Operating System
Windows 10
Relevant Log Output
"C:\Program Files\Python312\python.exe" C:\Automation\browser-use-main\browser-use-main\examples\use-cases\captcha.py
INFO [browser_use] BrowserUse logging setup complete with level info
INFO [root] Anonymized telemetry enabled. See https://docs.browser-use.com/development/telemetry for more information.
C:\Users\maniyar\AppData\Roaming\Python\Python312\site-packages\browser_use\agent\message_manager\views.py:59: LangChainBetaWarning: The function`load` is in beta. It is actively being worked on, so the API may change.
value['message'] = load(value['message'])
INFO [agent] 🚀 Starting task: go to https://captcha.com/demos/features/captcha-demo.aspx and solve the captcha
INFO [agent] 📍 Step 1
INFO [agent] 📍 Step 1
INFO [agent] 📍 Step 1
INFO [agent] 📍 Step 1
Process finished with exit code -1
The text was updated successfully, but these errors were encountered:
Is there anything about it? I am getting the same behavior (opens empty browser window, loops through "INFO [agent] 📍 Step 1") for any code I am trying to run.
LangChainBetaWarning: The function load is in beta is a red herring, unrelated to the issue of seeing Step 1 over and over again.
One common cause of it getting stuck on startup is that playwright's await page.title() can hang indefinitely if for some reason that page's CDP channel is crashed. I fixed that particular bug in a commit here (as part of a bigger unrelated PR). Subscribe over there to be notified when it merges.
Bug Description
I had run captcha.py and other scripts as well but giving error as "LangChainBetaWarning: The function
load
is in beta. It is actively being worked on, so the API may change.value['message'] = load(value['message'])", Could you please check and help me to resolve this.Reproduction Steps
load
is in beta. It is actively being worked on, so the API may change.value['message'] = load(value['message'])"
Code Sample
Version
0.1.40
LLM Model
GPT-4o
Operating System
Windows 10
Relevant Log Output
The text was updated successfully, but these errors were encountered: