Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/docs/Components/bundles-cuga.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,6 @@ This example asked about the sales data provided by the MCP Server, such as `Whi
| add_current_date_tool | Boolean | If true, adds a tool that returns the current date. Default: `true`. |
| lite_mode | Boolean | Set to `true` to enable CugaLite mode for faster execution when using a smaller number of tools. Default: `true`. |
| lite_mode_tool_threshold | Integer | The threshold to automatically enable CugaLite. If the CUGA component has fewer tools connected than this threshold, CugaLite is activated. Default: `25`. |
| decomposition_strategy | Dropdown | Strategy for task decomposition. `flexible` allows multiple subtasks per app. `exact` enforces one subtask per app. Default: `flexible`. |
| browser_enabled | Boolean | Enable a built-in browser for web scraping and search. Allows the agent to use general web search in its responses. Disable (`false`) to restrict the agent to the context provided in the flow. Default: `false`. |
| web_apps | Multiline String | When `browser_enabled` is true, specify a single URL such as `https://example.com` that the agent can open with the built-in browser. The CUGA component can access both public and private internet resources. There is no built-in mechanism in the CUGA component to restrict access to only public internet resources. |
2 changes: 1 addition & 1 deletion src/lfx/src/lfx/_assets/component_index.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/lfx/src/lfx/components/cuga/cuga_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class CugaComponent(ToolCallingAgentComponent):

display_name: str = "Cuga"
description: str = "Define the Cuga agent's policies, then assign it a task."
documentation: str = "https://docs.langflow.org/agents"
documentation: str = "https://docs.langflow.org/bundles-cuga"
icon = "bot"
name = "Cuga"

Expand Down
Loading