I have an AI agent that responds to user questions. To do this, it calls the “Knowledge” tool with the following input:
Tool Input:
{
"query": "What is your name?"
}
Tool Output:
{
"output": "Jeff"
}
The AI agent then uses this information to generate a response. However, I also need direct access to the raw output of the tool so that I can use it later in the workflow.
Questions:
Is there a way to access the tool’s output directly?
Can I store the raw output for later use in the flow?