fix: Hides agent executor output in components (#5899)
hide agent executor output
This commit is contained in:
parent
50ae0742a0
commit
2fc3a7ff92
2 changed files with 2 additions and 2 deletions
|
|
@ -69,7 +69,7 @@ class LCAgentComponent(Component):
|
|||
]
|
||||
|
||||
outputs = [
|
||||
Output(display_name="Agent", name="agent", method="build_agent"),
|
||||
Output(display_name="Agent", name="agent", method="build_agent", hidden=True),
|
||||
Output(display_name="Response", name="response", method="message_response"),
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class CSVAgentComponent(LCAgentComponent):
|
|||
|
||||
outputs = [
|
||||
Output(display_name="Response", name="response", method="build_agent_response"),
|
||||
Output(display_name="Agent", name="agent", method="build_agent"),
|
||||
Output(display_name="Agent", name="agent", method="build_agent", hidden=True),
|
||||
]
|
||||
|
||||
def _path(self) -> str:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue