refactor: Update imports to use MessageTextInput instead of TextInput

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-06-24 09:00:27 -03:00
commit 5c1ac1b273

View file

@ -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