langflow/src/backend/langflow/components/io/TextInput.py
2024-03-01 09:19:10 -03:00

12 lines
377 B
Python

from typing import Optional
from langflow.components.io.base.text import TextComponent
from langflow.field_typing import Text
class TextInput(TextComponent):
display_name = "Text Input"
description = "Used to pass text input to the next component."
def build(self, input_value: Optional[str] = "") -> Text:
return super().build(input_value=input_value)