fix: batch run description, output, and beta badge (#8304)

* remove data to dataframe and message to data

* fix batch run component
This commit is contained in:
Yuqi Tang 2025-05-30 15:22:23 -07:00 committed by GitHub
commit f1775440a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 7 deletions

View file

@ -15,9 +15,8 @@ if TYPE_CHECKING:
class BatchRunComponent(Component):
display_name = "Batch Run"
description = "Runs an LLM over each row of a DataFrame's column. If no column is set, the entire row is passed."
description = "Runs an LLM on each row of a DataFrame column. If no column is specified, all columns are used."
icon = "List"
beta = True
inputs = [
HandleInput(
@ -69,7 +68,7 @@ class BatchRunComponent(Component):
outputs = [
Output(
display_name="DataFrame",
display_name="LLM Results",
name="batch_results",
method="run_batch",
info="A DataFrame with all original columns plus the model's response column.",

File diff suppressed because one or more lines are too long