fix: Allow input connections to data components (#8517)

* fix: Allow input connections to data components

* Remove beta tag from Smart Function
This commit is contained in:
Eric Hare 2025-06-12 13:54:08 -07:00 committed by GitHub
commit d51d379ab9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 0 additions and 4 deletions

View file

@ -21,7 +21,6 @@ class NewsSearchComponent(Component):
display_name="Search Query",
info="Search keywords for news articles.",
tool_mode=True,
input_types=[],
required=True,
),
MessageTextInput(

View file

@ -20,7 +20,6 @@ class RSSReaderComponent(Component):
display_name="RSS Feed URL",
info="URL of the RSS feed to parse.",
tool_mode=True,
input_types=[],
required=True,
),
IntInput(

View file

@ -23,7 +23,6 @@ class WebSearchComponent(Component):
display_name="Search Query",
info="Keywords to search for.",
tool_mode=True,
input_types=[],
required=True,
),
IntInput(

View file

@ -19,7 +19,6 @@ class LambdaFilterComponent(Component):
description = "Uses an LLM to generate a function for filtering or transforming structured data."
icon = "test-tube-diagonal"
name = "Smart Function"
beta = True
inputs = [
DataInput(