We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3068495 commit c335a69Copy full SHA for c335a69
src/backend/base/langflow/components/agents/browser_use_agent.py
@@ -22,6 +22,7 @@ class BrowserUseAgentComponent(Component):
22
name="user_prompt",
23
display_name="User Prompt",
24
info="The prompt that the agent will use to perform tasks effectively.",
25
+ tool_mode=True,
26
),
27
]
28
@@ -35,5 +36,4 @@ async def run_browser_use_agent(self) -> Message:
35
36
llm=self.llm,
37
)
38
result = await agent.run()
- print(result)
39
return Message(text=str(result))
0 commit comments