Skip to content

Commit c335a69

Browse files
Update browser_use_agent.py
1 parent 3068495 commit c335a69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/base/langflow/components/agents/browser_use_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class BrowserUseAgentComponent(Component):
2222
name="user_prompt",
2323
display_name="User Prompt",
2424
info="The prompt that the agent will use to perform tasks effectively.",
25+
tool_mode=True,
2526
),
2627
]
2728

@@ -35,5 +36,4 @@ async def run_browser_use_agent(self) -> Message:
3536
llm=self.llm,
3637
)
3738
result = await agent.run()
38-
print(result)
3939
return Message(text=str(result))

0 commit comments

Comments
 (0)