From c468a7c918ade71537a6ce1de931b94cf992f60d Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Fri, 7 Jun 2024 15:21:02 -0400 Subject: [PATCH] tldr-not-heading --- docs/docs/administration/global-env.mdx | 2 +- docs/docs/components/inputs-and-outputs.mdx | 2 +- docs/docs/getting-started/flows-components-collections.mdx | 2 +- docs/docs/migration/possible-installation-issues.mdx | 4 ++-- docs/docs/tutorials/custom_components.mdx | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/docs/administration/global-env.mdx b/docs/docs/administration/global-env.mdx index 51e5d633e..4f1d673fb 100644 --- a/docs/docs/administration/global-env.mdx +++ b/docs/docs/administration/global-env.mdx @@ -8,7 +8,7 @@ import Admonition from "@theme/Admonition"; Global Variables are a useful feature of Langflow, allowing you to define reusable variables accessed from any Text field in your project. -## TL;DR +**TL;DR** - Global Variables are reusable variables accessible from any Text field in your project. - To create one, click the 🌐 button in a Text field and then **+ Add New Variable**. diff --git a/docs/docs/components/inputs-and-outputs.mdx b/docs/docs/components/inputs-and-outputs.mdx index a923d1f55..bd804ea5f 100644 --- a/docs/docs/components/inputs-and-outputs.mdx +++ b/docs/docs/components/inputs-and-outputs.mdx @@ -3,7 +3,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; # Inputs and Outputs -TL;DR: Inputs and Outputs are a category of components that are used to define where data comes in and out of your flow. +Inputs and Outputs are a category of components that are used to define where data comes in and out of your flow. They also dynamically change the Playground and can be renamed to facilitate building and maintaining your flows. ## Inputs diff --git a/docs/docs/getting-started/flows-components-collections.mdx b/docs/docs/getting-started/flows-components-collections.mdx index 335fb5c12..f33aa01eb 100644 --- a/docs/docs/getting-started/flows-components-collections.mdx +++ b/docs/docs/getting-started/flows-components-collections.mdx @@ -5,7 +5,7 @@ import ReactPlayer from "react-player"; # 🖥️ Flows, components, collections, and projects -## TL;DR +**TL;DR** A [flow](#flow) is a pipeline of components connected together in the Langflow canvas. diff --git a/docs/docs/migration/possible-installation-issues.mdx b/docs/docs/migration/possible-installation-issues.mdx index a012a1c09..791741f5f 100644 --- a/docs/docs/migration/possible-installation-issues.mdx +++ b/docs/docs/migration/possible-installation-issues.mdx @@ -4,7 +4,7 @@ This is a list of possible issues that you may encounter when installing Langflo ## _`No module named 'langflow.__main__'`_ -### TL;DR +**TL;DR** 1. Run _`python -m langflow run`_ instead of _`langflow run`_. 2. If that doesn't work, reinstall Langflow with _`_python -m pip install langflow --pre -U`_. @@ -33,7 +33,7 @@ There are two possible reasons for this error: ## _`Something went wrong running migrations. Please, run 'langflow migration --fix'`_ -### TL;DR +**TL;DR** - Clear the cache by deleting the contents of the cache folder. This folder can be found at: diff --git a/docs/docs/tutorials/custom_components.mdx b/docs/docs/tutorials/custom_components.mdx index 02a137d07..bf9299a63 100644 --- a/docs/docs/tutorials/custom_components.mdx +++ b/docs/docs/tutorials/custom_components.mdx @@ -14,7 +14,7 @@ A Custom Component is created from a user-defined Python script that uses the _` Let's take a look at the basic rules and features. Then we'll go over an example. -## TL;DR +**TL;DR** - Create a class that inherits from _`CustomComponent`_ and contains a _`build`_ method. - Use arguments with [Type Annotations (or Type Hints)](https://docs.python.org/3/library/typing.html) of the _`build`_ method to create component fields.