Spaces:
Running
Running
from langflow.base.io.text import TextComponent | |
from langflow.io import MultilineInput, Output | |
from langflow.schema.message import Message | |
class TextInputComponent(TextComponent): | |
display_name = "Text Input" | |
description = "Get text inputs from the Playground." | |
icon = "type" | |
name = "TextInput" | |
inputs = [ | |
MultilineInput( | |
name="input_value", | |
display_name="Text", | |
info="Text to be passed as input.", | |
), | |
] | |
outputs = [ | |
Output(display_name="Text", name="text", method="text_response"), | |
] | |
def text_response(self) -> Message: | |
return Message( | |
text=self.input_value, | |
) | |