From 5c1ac1b273b496eca86debb4ad77ce0abfd02499 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 24 Jun 2024 09:00:27 -0300 Subject: [PATCH] refactor: Update imports to use MessageTextInput instead of TextInput --- docs/docs/components/custom.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/components/custom.mdx b/docs/docs/components/custom.mdx index cbc5f13ff..10b45c9b7 100644 --- a/docs/docs/components/custom.mdx +++ b/docs/docs/components/custom.mdx @@ -27,7 +27,7 @@ A custom component in Python looks like this: ```python from langflow.custom import Component -from langflow.inputs import TextInput, IntInput, BoolInput, DropdownInput, HandleInput +from langflow.inputs import MessageTextInput, IntInput, BoolInput, DropdownInput, HandleInput from langflow.template import Output from langflow.schema import Data, Message from typing import List, Optional