-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
AgentsTo group issues regarding Agents functionalityTo group issues regarding Agents functionalityPipelinesTo group issues regarding Pipelines functionalityTo group issues regarding Pipelines functionality
Milestone
Description
Title: Pipeline-as-Toolkit input is truncated when called from Agent
Description:
When a pipeline is added as a toolkit to an agent, the input string is mishandled and only a single character is passed to the pipeline node. Running the same pipeline directly works as expected.
Steps to reproduce:
- Create a pipeline (Dummy_Pipeline) with a single node that uppercases the entire input string and returns “Uppercase: ”.
- Run the pipeline directly with input “hello world” and verify the output.
- Add the same pipeline as a toolkit to an agent (Dummy_Agent).
- Execute the agent with the input “hello world” so it triggers the pipeline.
- Check the final output.
Actual Result:
The agent-triggered run returns “Uppercase: D” (single-character), indicating the pipeline received a truncated input.
Expected Result:
The agent-triggered run should return “Uppercase: HELLO WORLD”, identical to the direct pipeline execution.
Metadata
Metadata
Assignees
Labels
AgentsTo group issues regarding Agents functionalityTo group issues regarding Agents functionalityPipelinesTo group issues regarding Pipelines functionalityTo group issues regarding Pipelines functionality
Type
Projects
Status
Done