Skip to content

docs: remove consecutive duplicate words #7694

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 4 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/Integrations/integrations-assemblyai.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ To run the Transcription and Speech AI Flow:
1. Open Langflow and create a new project.
2. Add the components listed above to your flow canvas, or download the [AssemblyAI Transcription and Speech AI Flow](./AssemblyAI_Flow.json)(Download link) and **Import** the JSON file into Langflow.
3. Connect the components as shown in the flow diagram. **Tip**: Freeze the path of the *Start Transcript* component to only submit the file once.
4. Input the AssemblyAI API key in in all components that require the key (Start Transcript, Poll Transcript, Get Subtitles, LeMUR, List Transcripts).
4. Input the AssemblyAI API key in all components that require the key (Start Transcript, Poll Transcript, Get Subtitles, LeMUR, List Transcripts).
5. Select an audio or video file in the *Start Transcript* component.
6. Run the flow by clicking **Play** on the *Parse Data* component. Make sure that the specified template is `{text}`.
7. To generate subtitles, click **Play** on the *Get Subtitles* component.
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

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def validate_icon_bg_color(cls, v):
if v is not None and not isinstance(v, str):
msg = "Icon background color must be a string"
raise ValueError(msg)
# validate that is is a hex color
# validate that is a hex color
if v and not v.startswith("#"):
msg = "Icon background color must start with #"
raise ValueError(msg)
Expand Down
Loading