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
15 changes: 10 additions & 5 deletions docs/docs/Components/concepts-components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,24 @@ After adding a component to a flow, configure the component's parameters and con

Each component has inputs, outputs, parameters, and controls related to the component's purpose.
By default, components show only required and common options.
To access additional settings and controls, including meta settings, use the [component's header menu](#component-header-menus).
To access additional settings and controls, including meta settings, use the [component inspection panel](#component-inspection-panel).

### Component inspection panel {#component-inspection-panel}

When you select a component in the workspace, a component inspection panel appears on the right side of the screen.

The inspection panel displays all of a component's parameters, including hidden or advanced parameters.

### Component header menus

To access a component's header menu, click the component in your workspace.

![Agent component](/img/agent-component.png)

A few options are available directly on the header menu.
For example:
The following options are available directly on the header menu:

- **Code**: Modify component settings by directly editing the component's Python code.
- **Controls**: Adjust all component parameters, including optional settings that are hidden by default.
- **Freeze**: Freeze a component and all upstream components to prevent re-running. For more information, see [Freeze a component](#freeze-a-component).
- **Tool Mode**: Enable this option when combining a component with an **Agent** component.

For all other options, including **Delete** and **Duplicate** controls, click <Icon name="Ellipsis" aria-hidden="true" /> **Show More**.
Expand Down Expand Up @@ -78,7 +83,7 @@ Use the freeze option if you expect consistent output from a component _and all
Freezing a component prevents that component and all upstream components from re-running, and it preserves the last output state for those components.
Any future flow runs use the preserved output.

To freeze a component, click the component in the workspace to expose the component's header menu, click <Icon name="Ellipsis" aria-hidden="true" /> **Show More**, and then select **Freeze**.
To freeze a component, click the component in the workspace to expose the component's header menu, and then click **Freeze**.

## Component ports

Expand Down
5 changes: 5 additions & 0 deletions docs/docs/Support/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ For all changes, see the [Changelog](https://github.com/langflow-ai/langflow/rel
Model providers for language models, embedding models, and agents are now configured globally in the **Model providers** pane, instead of within individual components.
For more information, see the [Language Model component](/components-models).

- Component inspection panel

The component inspection panel replaces the component header menu for managing component parameters and settings.
For more information, see [Component inspection panel](/concepts-components#component-inspection-panel).

- Mustache templating support for Prompt Template component

The **Prompt Template** component now supports Mustache templating syntax.
Expand Down
4 changes: 1 addition & 3 deletions docs/docs/_partial-hidden-params.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
import Icon from "@site/src/components/icon";

Some parameters are hidden by default in the visual editor.
You can modify all parameters through the <Icon name="SlidersHorizontal" aria-hidden="true"/> **Controls** in the [component's header menu](/concepts-components#component-menus).
You can modify all component parameters through the [component inspection panel](/concepts-components#component-inspection-panel) that appears when you select a component.
Loading