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
Run examples/features/sensitive_data.py and you should see controller log still shows something like this in which xxxxxxxxxxxx is the sensitive data such as password:
INFO [controller] ⌨️ Input xxxxxxxxxxxxx into index 3
Code Sample
importasynciofromdotenvimportload_dotenvfromlangchain_openaiimportChatOpenAIfrombrowser_useimportAgentload_dotenv()
# Initialize the modelllm=ChatOpenAI(
model='gpt-4o',
temperature=0.0,
)
# the model will see x_name and x_password, but never the actual values.sensitive_data= {'discord_name': '[email protected]', 'discord_password': 'jsedNxde@3'}
task='go to discord.com and login with discord_name and discord_password then find interesting posts and like them'agent=Agent(task=task, llm=llm, sensitive_data=sensitive_data)
asyncdefmain():
awaitagent.run()
if__name__=='__main__':
asyncio.run(main())
Version
0.1.37
LLM Model
GPT-4o
Operating System
macOS 14.5
Relevant Log Output
The text was updated successfully, but these errors were encountered:
Bug Description
When I tried to use sensitive data when creating an agent, I found that agent log properly masked the sensitive data but not controller.
I searched the source code, it seems this is the location where sensitive data is not checked:
https://github.com/browser-use/browser-use/blob/main/browser_use/controller/service.py#L137
Reproduction Steps
Run examples/features/sensitive_data.py and you should see controller log still shows something like this in which xxxxxxxxxxxx is the sensitive data such as password:
INFO [controller] ⌨️ Input xxxxxxxxxxxxx into index 3
Code Sample
Version
0.1.37
LLM Model
GPT-4o
Operating System
macOS 14.5
Relevant Log Output
The text was updated successfully, but these errors were encountered: