Skip to content

Commit 37fc581

Browse files
docs: v1.3 (#7160)
* lint-plaintext * Squashed commit of the following: commit 0820877 Author: Mendon Kissling <[email protected]> Date: Wed Feb 19 17:34:54 2025 -0500 fix-links commit b47fbfe Merge: 2298715 02617ff Author: Mendon Kissling <[email protected]> Date: Wed Feb 19 17:18:18 2025 -0500 Merge branch 'main' into docs-publish-v0 commit 2298715 Merge: bf01a75 e8529ea Author: Mendon Kissling <[email protected]> Date: Wed Feb 19 16:25:52 2025 -0500 Merge branch 'main' into docs-publish-v0 commit bf01a75 Merge: 85770ae b43bf8f Author: Mendon Kissling <[email protected]> Date: Wed Feb 19 14:42:10 2025 -0500 Merge branch 'main' into docs-publish-v0 commit 85770ae Merge: fda54f8 e970cdb Author: Mendon Kissling <[email protected]> Date: Wed Feb 19 11:19:11 2025 -0500 Merge branch 'main' into docs-publish-v0 commit fda54f8 Merge: 3027a9c 25ac555 Author: Mendon Kissling <[email protected]> Date: Tue Feb 18 11:43:21 2025 -0500 Merge branch 'main' into docs-publish-v0 commit 3027a9c Merge: 0046d18 45e2f73 Author: Mendon Kissling <[email protected]> Date: Fri Feb 14 13:20:44 2025 -0500 Merge branch 'main' into docs-publish-v0 commit 0046d18 Author: Mendon Kissling <[email protected]> Date: Thu Feb 13 13:31:22 2025 -0500 delete-site-and-redirect commit 1bf763b Author: Mendon Kissling <[email protected]> Date: Thu Feb 13 13:17:49 2025 -0500 docs: Add information about sharing the Langflow application's Playground endpoint commit 4eb34bd Author: Mendon Kissling <[email protected]> Date: Thu Feb 13 13:06:46 2025 -0500 docs: Update references from "API pane" to "Publish pane" in documentation * s3-bucket-init * add-bundles-page * output-parser-component * language-model-component * legacy-components * update-file-component * parser-component * publish-doc * update-agent-starter-flows * voice-mode * webhook-component-update * file-management * update-env-vars * make-env-var-table-more-readable * file-management-link * bump-version * add-graph-rag-component * docs-lambda-filter-component * docs-add-watsonx-model-component * add-langchain-links-for-watson-package * remove-s3-bucket-data-component * docs: publish-flows introduction * docs: update voice mode instructions for clarity and detail * Apply suggestions from code review Co-authored-by: KimberlyFields <[email protected]> * Apply suggestions from code review Co-authored-by: KimberlyFields <[email protected]> * Apply suggestions from code review Co-authored-by: KimberlyFields <[email protected]> * Apply suggestions from code review Co-authored-by: KimberlyFields <[email protected]> * plurals * docs-review * Apply suggestions from code review Co-authored-by: KimberlyFields <[email protected]> * steps-for-file-component * parse-data-and-dataframe-in-legacy * remove-beta-from-parser-component --------- Co-authored-by: KimberlyFields <[email protected]>
1 parent 3a5dbb2 commit 37fc581

27 files changed

+707
-237
lines changed

docs/docs/API-Reference/api-reference-api-examples.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export LANGFLOW_URL="http://127.0.0.1:7860"
2424
```
2525

2626
* Export the `flow-id` in your terminal.
27-
The `flow-id` is found in the [API pane](/concepts-api) or in the flow's URL.
28-
```bash
27+
The `flow-id` is found in the [Publish pane](/concepts-publish) or in the flow's URL.
28+
```plain
2929
export FLOW_ID="359cd752-07ea-46f2-9d3b-a4407ef618da"
3030
```
3131

docs/docs/Components/components-agents.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ For more information, see the [CrewAI documentation](https://docs.crewai.com/how
253253

254254
| Name | Display Name | Info |
255255
|------|--------------|------|
256-
| task_output | Sequential Task | List of SequentialTask objects representing the created task(s) |
256+
| task_output | Sequential Task | List of SequentialTask objects representing the created tasks |
257257

258258
## Tool Calling Agent
259259

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Bundles
3+
slug: /components-bundle-components
4+
---
5+
6+
**Bundles** are third-party components grouped by provider.
7+
8+
For more information on bundled components, see the component provider's documentation.
9+
10+

docs/docs/Components/components-data.md

+86-21
Original file line numberDiff line numberDiff line change
@@ -75,25 +75,73 @@ This component recursively loads files from a directory, with options for file t
7575

7676
## File
7777

78-
The FileComponent is a class that loads and parses text files of various supported formats, converting the content into a Data object. It supports multiple file types and provides an option for silent error handling.
78+
This component loads and parses files of various supported formats and converts the content into a [Data](/concepts-objects) object. It supports multiple file types and provides options for parallel processing and error handling.
7979

80-
The maximum supported file size is 100 MB.
80+
To load a document, follow these steps:
81+
82+
1. Click the **Select files** button.
83+
2. Select a local file or a file loaded with [File management](/concepts-file-management), and then click **Select file**.
84+
85+
The loaded file name appears in the component.
86+
87+
The default maximum supported file size is 100 MB.
88+
To modify this value, see [--max-file-size-upload](/environment-variables#LANGFLOW_MAX_FILE_SIZE_UPLOAD).
8189

8290
### Inputs
8391

84-
| Name | Display Name | Info |
85-
| ------------- | ------------- | -------------------------------------------- |
86-
| path | Path | File path to load. |
92+
| Name | Display Name | Info |
93+
|------|--------------|------|
94+
| path | Files | Path to file(s) to load. Supports individual files or bundled archives. |
95+
| file_path | Server File Path | Data object with a `file_path` property pointing to the server file or a Message object with a path to the file. Supersedes 'Path' but supports the same file types. |
96+
| separator | Separator | Specify the separator to use between multiple outputs in Message format. |
8797
| silent_errors | Silent Errors | If true, errors do not raise an exception. |
98+
| delete_server_file_after_processing | Delete Server File After Processing | If true, the Server File Path is deleted after processing. |
99+
| ignore_unsupported_extensions | Ignore Unsupported Extensions | If true, files with unsupported extensions are not processed. |
100+
| ignore_unspecified_files | Ignore Unspecified Files | If true, `Data` with no `file_path` property is ignored. |
101+
| use_multithreading | [Deprecated] Use Multithreading | Set 'Processing Concurrency' greater than `1` to enable multithreading. This option is deprecated. |
102+
| concurrency_multithreading | Processing Concurrency | When multiple files are being processed, the number of files to process concurrently. Default is 1. Values greater than 1 enable parallel processing for 2 or more files. |
88103

89104
### Outputs
90105

91-
| Name | Display Name | Info |
92-
| ---- | ------------ | -------------------------------------------- |
93-
| data | Data | Parsed content of the file as a Data object. |
106+
| Name | Display Name | Info |
107+
|------|--------------|------|
108+
| data | Data | Parsed content of the file as a [Data](/concepts-objects) object. |
109+
| dataframe | DataFrame | File content as a [DataFrame](/concepts-objects#dataframe-object) object. |
110+
| message | Message | File content as a [Message](/concepts-objects#message-object) object. |
111+
112+
113+
### Supported File Types
114+
115+
Text files:
116+
- `.txt` - Text files
117+
- `.md`, `.mdx` - Markdown files
118+
- `.csv` - CSV files
119+
- `.json` - JSON files
120+
- `.yaml`, `.yml` - YAML files
121+
- `.xml` - XML files
122+
- `.html`, `.htm` - HTML files
123+
- `.pdf` - PDF files
124+
- `.docx` - Word documents
125+
- `.py` - Python files
126+
- `.sh` - Shell scripts
127+
- `.sql` - SQL files
128+
- `.js` - JavaScript files
129+
- `.ts`, `.tsx` - TypeScript files
130+
131+
Archive formats (for bundling multiple files):
132+
- `.zip` - ZIP archives
133+
- `.tar` - TAR archives
134+
- `.tgz` - Gzipped TAR archives
135+
- `.bz2` - Bzip2 compressed files
136+
- `.gz` - Gzip compressed files
94137

95138
## Gmail Loader
96139

140+
:::info
141+
Google components are available in the **Components** menu under **Bundles**.
142+
For more information, see [Integrate Google OAuth with Langflow](/integrations-setup-google-oauth-langflow).
143+
:::
144+
97145
This component loads emails from Gmail using provided credentials and filters.
98146

99147
For more on creating a service account JSON, see [Service Account JSON](https://developers.google.com/identity/protocols/oauth2/service-account).
@@ -114,6 +162,11 @@ For more on creating a service account JSON, see [Service Account JSON](https://
114162

115163
## Google Drive Loader
116164

165+
:::info
166+
Google components are available in the **Components** menu under **Bundles**.
167+
For more information, see [Integrate Google OAuth with Langflow](/integrations-setup-google-oauth-langflow).
168+
:::
169+
117170
This component loads documents from Google Drive using provided credentials and a single document ID.
118171

119172
For more on creating a service account JSON, see [Service Account JSON](https://developers.google.com/identity/protocols/oauth2/service-account).
@@ -133,6 +186,11 @@ For more on creating a service account JSON, see [Service Account JSON](https://
133186

134187
## Google Drive Search
135188

189+
:::info
190+
Google components are available in the **Components** menu under **Bundles**.
191+
For more information, see [Integrate Google OAuth with Langflow](/integrations-setup-google-oauth-langflow).
192+
:::
193+
136194
This component searches Google Drive files using provided credentials and query parameters.
137195

138196
For more on creating a service account JSON, see [Service Account JSON](https://developers.google.com/identity/protocols/oauth2/service-account).
@@ -178,19 +236,24 @@ This component executes SQL queries on a specified database.
178236

179237
## URL
180238

181-
This component fetches content from one or more URLs, processes the content, and returns it as a list of [Data](/concepts-objects) objects.
239+
This component fetches content from one or more URLs, processes the content, and returns it in various formats. It supports output in plain text, raw HTML, or JSON, with options for cleaning and separating multiple outputs.
182240

183241
### Inputs
184242

185-
| Name | Display Name | Info |
186-
| ---- | ------------ | ---------------------- |
187-
| urls | URLs | Enter one or more URLs |
243+
| Name | Display Name | Info |
244+
|------|--------------|------|
245+
| urls | URLs | Enter one or more URLs. URLs are automatically validated and cleaned. |
246+
| format | Output Format | Output Format. Use **Text** to extract text from the HTML, **Raw HTML** for the raw HTML content, or **JSON** to extract JSON from the HTML. |
247+
| separator | Separator | Specify the separator to use between multiple outputs. Default for **Text** is `\n\n`. Default for **Raw HTML** is `\n<!-- Separator -->\n`. |
248+
| clean_extra_whitespace | Clean Extra Whitespace | Whether to clean excessive blank lines in the text output. Only applies to `Text` format. |
188249

189250
### Outputs
190251

191-
| Name | Display Name | Info |
192-
| ---- | ------------ | ------------------------------------------------------------ |
193-
| data | Data | List of Data objects containing fetched content and metadata |
252+
| Name | Display Name | Info |
253+
|------|--------------|------|
254+
| data | Data | List of [Data](/concepts-objects) objects containing fetched content and metadata. |
255+
| text | Text | Fetched content as formatted text, with applied separators and cleaning. |
256+
| dataframe | DataFrame | Content formatted as a [Data](/concepts-objects#dataframe-object) object. |
194257

195258
## Webhook
196259

@@ -219,12 +282,14 @@ Your JSON data is posted to the **Chat Output** component, which indicates that
219282

220283
### Inputs
221284

222-
| Name | Type | Description |
223-
| ---- | ------ | ---------------------------------------------- |
224-
| data | String | JSON payload for testing the webhook component |
285+
| Name | Display Name | Description |
286+
|------|--------------|-------------|
287+
| data | Payload | Receives a payload from external systems through HTTP POST requests. |
288+
| curl | cURL | The cURL command template for making requests to this webhook. |
289+
| endpoint | Endpoint | The endpoint URL where this webhook receives requests. |
225290

226291
### Outputs
227292

228-
| Name | Type | Description |
229-
| ----------- | ---- | ------------------------------------- |
230-
| output_data | Data | Processed data from the webhook input |
293+
| Name | Display Name | Description |
294+
|------|--------------|-------------|
295+
| output_data | Data | Outputs processed data from the webhook input, and returns an empty [Data](/concepts-objects) object if no input is provided. If the input is not valid JSON, the component wraps it in a `payload` object. |

docs/docs/Components/components-helpers.md

+46
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ The Batch Run component runs a language model over each row of a [DataFrame](/co
3838

3939
## Create List
4040

41+
:::important
42+
This component is in **Legacy**, which means it is no longer in active development as of Langflow version 1.3.
43+
:::
44+
4145
This component dynamically creates a record with a specified number of fields.
4246

4347
### Inputs
@@ -135,6 +139,48 @@ It provides flexibility in managing message storage and retrieval within a chat
135139
|------|--------------|------|
136140
| stored_messages | Stored Messages | The list of stored messages after the current message has been added. |
137141

142+
## Output Parser
143+
144+
:::important
145+
This component is in **Legacy**, which means it is no longer in active development as of Langflow version 1.3.
146+
:::
147+
148+
This component transforms the output of a language model into a specified format. It supports CSV format parsing, which converts LLM responses into comma-separated lists using Langchain's `CommaSeparatedListOutputParser`.
149+
150+
:::note
151+
This component only provides formatting instructions and parsing functionality. It does not include a prompt. You'll need to connect it to a separate Prompt component to create the actual prompt template for the LLM to use.
152+
:::
153+
154+
Both the **Output Parser** and **Structured Output** components format LLM responses, but they have different use cases.
155+
The **Output Parser** is simpler and focused on converting responses into comma-separated lists. Use this when you just need a list of items, for example `["item1", "item2", "item3"]`.
156+
The **Structured Output** is more complex and flexible, and allows you to define custom schemas with multiple fields of different types. Use this when you need to extract structured data with specific fields and types.
157+
158+
To use this component:
159+
160+
1. Create a Prompt component and connect the Output Parser's `format_instructions` output to it. This ensures the LLM knows how to format its response.
161+
2. Write your actual prompt text in the Prompt component, including the `{format_instructions}` variable.
162+
For example, in your Prompt component, the template might look like:
163+
```
164+
{format_instructions}
165+
Please list three fruits.
166+
```
167+
3. Connect the `output_parser` output to your LLM model.
168+
169+
4. The output parser converts this into a Python list: `["apple", "banana", "orange"]`.
170+
171+
### Inputs
172+
173+
| Name | Display Name | Info |
174+
|------|--------------|------|
175+
| parser_type | Parser | Select the parser type. Currently supports "CSV". |
176+
177+
### Outputs
178+
179+
| Name | Display Name | Info |
180+
|------|--------------|------|
181+
| format_instructions | Format Instructions | Pass to a prompt template to include formatting instructions for LLM responses. |
182+
| output_parser | Output Parser | The constructed output parser that can be used to parse LLM responses. |
183+
138184
## Structured output
139185

140186
This component transforms LLM responses into structured data formats.

docs/docs/Components/components-logic.md

+47-13
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,19 @@ It includes code examples of REST and gRPC implementations to demonstrate integr
3636

3737
## Conditional router (If-Else component)
3838

39-
This component routes an input message to a corresponding output based on text comparison.
40-
41-
The ConditionalRouterComponent routes messages based on text comparison. It evaluates a condition by comparing two text inputs using a specified operator and routes the message accordingly.
39+
This component routes messages by comparing two strings. It evaluates a condition by comparing two text inputs using the specified operator and routes the message to `true_result` or `false_result`.
4240

4341
### Inputs
4442

4543
| Name | Type | Description |
4644
|----------------|----------|-------------------------------------------------------------------|
4745
| input_text | String | The primary text input for the operation. |
4846
| match_text | String | The text input to compare against. |
49-
| operator | Dropdown | The operator to apply for comparing the texts. |
50-
| case_sensitive | Boolean | If true, the comparison will be case sensitive. |
47+
| operator | Dropdown | The operator to compare texts. Options: "equals", "not equals", "contains", "starts with", "ends with", "regex". Default: "equals". |
48+
| case_sensitive | Boolean | If true, the comparison is case sensitive. This setting is ignored for regex comparison. Default: false. |
5149
| message | Message | The message to pass through either route. |
52-
| max_iterations | Integer | The maximum number of iterations for the conditional router. |
53-
| default_route | Dropdown | The default route to take when max iterations are reached. |
50+
| max_iterations | Integer | (Advanced) The maximum number of iterations for the conditional router. Default: 10. |
51+
| default_route | Dropdown | (Advanced) The default route to take when max iterations are reached. Options: "true_result" or "false_result". Default: "false_result". |
5452

5553
### Outputs
5654

@@ -59,20 +57,37 @@ The ConditionalRouterComponent routes messages based on text comparison. It eval
5957
| true_result | Message | The output when the condition is true. |
6058
| false_result | Message | The output when the condition is false. |
6159

62-
## Data conditional router
60+
### Operator Behavior
61+
62+
The **If-else** component includes a comparison operator to compare the values in `input_text` and `match_text`.
63+
64+
All options respect the `case_sensitive` setting except **regex**.
65+
66+
- **equals**: Exact match comparison
67+
- **not equals**: Inverse of exact match
68+
- **contains**: Checks if match_text is found within input_text
69+
- **starts with**: Checks if input_text begins with match_text
70+
- **ends with**: Checks if input_text ends with match_text
71+
- **regex**: Performs regular expression matching. It is always case sensitive and ignores the case_sensitive setting.
72+
73+
## Data Conditional Router
74+
75+
:::important
76+
This component is in **Legacy**, which means it is no longer in active development as of Langflow version 1.3.
77+
:::
6378

64-
This component routes `Data` objects based on a condition applied to a specified key, including boolean validation.
79+
This component routes `Data` objects based on a condition applied to a specified key, including boolean validation. It can process either a single Data object or a list of Data objects.
6580

6681
This component is particularly useful in workflows that require conditional routing of complex data structures, enabling dynamic decision-making based on data content.
6782

6883
### Inputs
6984

7085
| Name | Type | Description |
7186
|---------------|----------|-----------------------------------------------------------------------------------|
72-
| data_input | Data | The data object or list of data objects to process. |
73-
| key_name | String | The name of the key in the data object to check. |
74-
| operator | Dropdown | The operator to apply for comparing the values. |
75-
| compare_value | String | The value to compare against (not used for boolean validator). |
87+
| data_input | Data | The Data object or list of Data objects to process. Can handle both single items and lists. |
88+
| key_name | String | The name of the key in the Data object to check. |
89+
| operator | Dropdown | The operator to apply. Options: "equals", "not equals", "contains", "starts with", "ends with", "boolean validator". Default: "equals". |
90+
| compare_value | String | The value to compare against. Not shown/used when operator is "boolean validator". |
7691

7792
### Outputs
7893

@@ -81,6 +96,25 @@ This component is particularly useful in workflows that require conditional rout
8196
| true_output | Data/List | Output when the condition is met. |
8297
| false_output | Data/List | Output when the condition is not met. |
8398

99+
### Operator Behavior
100+
101+
- **equals**: Exact match comparison between the key's value and compare_value
102+
- **not equals**: Inverse of exact match
103+
- **contains**: Checks if compare_value is found within the key's value
104+
- **starts with**: Checks if the key's value begins with compare_value
105+
- **ends with**: Checks if the key's value ends with compare_value
106+
- **boolean validator**: Treats the key's value as a boolean. The following values are considered true:
107+
- Boolean `true`
108+
- Strings: "true", "1", "yes", "y", "on" (case-insensitive)
109+
- Any other value is converted using Python's `bool()` function
110+
111+
### List Processing
112+
113+
The following actions occur when processing a list of Data objects:
114+
- Each object in the list is evaluated individually
115+
- Objects meeting the condition go to true_output
116+
- Objects not meeting the condition go to false_output
117+
- If all objects go to one output, the other output is empty
84118

85119
## Flow as tool {#flow-as-tool}
86120

0 commit comments

Comments
 (0)