You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/docs/Components/components-data.md
+86-21
Original file line number
Diff line number
Diff line change
@@ -75,25 +75,73 @@ This component recursively loads files from a directory, with options for file t
75
75
76
76
## File
77
77
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.
79
79
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).
| 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. |
87
97
| 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. |
| 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
94
137
95
138
## Gmail Loader
96
139
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
+
97
145
This component loads emails from Gmail using provided credentials and filters.
98
146
99
147
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://
114
162
115
163
## Google Drive Loader
116
164
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
+
117
170
This component loads documents from Google Drive using provided credentials and a single document ID.
118
171
119
172
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://
133
186
134
187
## Google Drive Search
135
188
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
+
136
194
This component searches Google Drive files using provided credentials and query parameters.
137
195
138
196
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.
178
236
179
237
## URL
180
238
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.
182
240
183
241
### Inputs
184
242
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. |
| 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.|
Copy file name to clipboardexpand all lines: docs/docs/Components/components-helpers.md
+46
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,10 @@ The Batch Run component runs a language model over each row of a [DataFrame](/co
38
38
39
39
## Create List
40
40
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
+
41
45
This component dynamically creates a record with a specified number of fields.
42
46
43
47
### Inputs
@@ -135,6 +139,48 @@ It provides flexibility in managing message storage and retrieval within a chat
135
139
|------|--------------|------|
136
140
| stored_messages | Stored Messages | The list of stored messages after the current message has been added. |
137
141
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
+
138
184
## Structured output
139
185
140
186
This component transforms LLM responses into structured data formats.
Copy file name to clipboardexpand all lines: docs/docs/Components/components-logic.md
+47-13
Original file line number
Diff line number
Diff line change
@@ -36,21 +36,19 @@ It includes code examples of REST and gRPC implementations to demonstrate integr
36
36
37
37
## Conditional router (If-Else component)
38
38
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`.
| case_sensitive | Boolean | If true, the comparison is case sensitive. This setting is ignored for regex comparison. Default: false.|
51
49
| 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".|
54
52
55
53
### Outputs
56
54
@@ -59,20 +57,37 @@ The ConditionalRouterComponent routes messages based on text comparison. It eval
59
57
| true_result | Message | The output when the condition is true. |
60
58
| false_result | Message | The output when the condition is false. |
61
59
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
+
:::
63
78
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.
65
80
66
81
This component is particularly useful in workflows that require conditional routing of complex data structures, enabling dynamic decision-making based on data content.
0 commit comments