From ab6d6bc80333780e0a7649bd6a750c7a97eced8e Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 28 Jul 2023 14:25:50 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(flow-runner.mdx):=20update?= =?UTF-8?q?=20introduction=20to=20clarify=20the=20purpose=20of=20the=20Cus?= =?UTF-8?q?tomComponent=20=F0=9F=93=9D=20docs(flow-runner.mdx):=20update?= =?UTF-8?q?=20example=20description=20to=20focus=20on=20creating=20a=20com?= =?UTF-8?q?ponent=20to=20run=20other=20flows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/examples/flow-runner.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/examples/flow-runner.mdx b/docs/docs/examples/flow-runner.mdx index daf5ba6db..606e1ad15 100644 --- a/docs/docs/examples/flow-runner.mdx +++ b/docs/docs/examples/flow-runner.mdx @@ -8,11 +8,11 @@ import Admonition from "@theme/Admonition"; # FlowRunner Component -Now let's see how to create a component that runs other flows. +The CustomComponent allows us to create new components that can interact with Langflow itself. -This example will be a bit more complex, but it will show you some of the methods available in the _`CustomComponent`_ class. +In this example, we are going to create a component that allows us to run other flows. -What we will see in this example: +What we will see: - How to list the flows in the collection using the _`list_flows`_ method. - How to load a flow using the _`load_flow`_ method.