Skip to content

fix: typos #7743

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion docs/docs/Configuration/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ On startup, Langflow imports the environment variables from your `.env` file, as
## Precedence {#precedence}

Environment variables [defined in the .env file](#configure-variables-env-file) take precedence over those [set in your terminal](#configure-variables-terminal).
That means, if you happen to set the same environment variable in both your terminal and your `.env` file, Langflow adopts the value from the the `.env` file.
That means, if you happen to set the same environment variable in both your terminal and your `.env` file, Langflow adopts the value from the `.env` file.

:::info[CLI precedence]
[Langflow CLI options](./configuration-cli.md) override the value of corresponding environment variables defined in the `.env` file as well as any environment variables set in your terminal.
Expand Down
4 changes: 2 additions & 2 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -5719,9 +5719,9 @@
"feature_flags": {
"$ref": "#/components/schemas/FeatureFlags"
},
"serialization_max_items_lenght": {
"serialization_max_items_length": {
"type": "integer",
"title": "Serialization Max Items Lenght",
"title": "Serialization Max Items Length",
"default": 1000
},
"serialization_max_text_length": {
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/api/v1/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ class FlowDataRequest(BaseModel):

class ConfigResponse(BaseModel):
feature_flags: FeatureFlags
serialization_max_items_lenght: int = serialization_constants.MAX_ITEMS_LENGTH
serialization_max_items_length: int = serialization_constants.MAX_ITEMS_LENGTH
serialization_max_text_length: int = serialization_constants.MAX_TEXT_LENGTH
frontend_timeout: int
auto_saving: bool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class DataFilterComponent(Component):
display_name = "Filter Values"
description = (
"Filter a list of data items based on a specified key, filter value,"
" and comparison operator. Check advanced options to select match comparision."
" and comparison operator. Check advanced options to select match comparison."
)
icon = "filter"
beta = True
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ def _update_cloud_regions(self, build_config: dict, field_value: dict) -> dict:
template = build_config["database_name"]["dialog_inputs"]["fields"]["data"]["node"]["template"]
template["03_region"]["options"] = self.map_cloud_providers()[env][cloud_provider]["regions"]

# Reset the the 03_region value if it's not in the new options
# Reset the 03_region value if it's not in the new options
if template["03_region"]["value"] not in template["03_region"]["options"]:
template["03_region"]["value"] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@
"category": "data",
"conditional_paths": [],
"custom_fields": {},
"description": "Load and retrive data from specified URLs.",
"description": "Load and retrieve data from specified URLs.",
"display_name": "URL",
"documentation": "",
"edited": false,
Expand Down Expand Up @@ -1525,4 +1525,4 @@
"chatbots",
"content-generation"
]
}
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1714,7 +1714,7 @@
"type": "dict"
},
{
"description": "skills mentioned in the resume.comma seperated.",
"description": "skills mentioned in the resume. Comma separated.",
"multiple": "False",
"name": "skills",
"type": "list"
Expand Down Expand Up @@ -2470,4 +2470,4 @@
"chatbots",
"coding"
]
}
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const ErrorView = ({
{content.component && (
<>
<span>
An error occured in the{" "}
An error occurred in the{" "}
<span
className={cn(
closeChat ?? "cursor-pointer underline",
Expand Down
Loading