Hi I've been experimenting with query pipeline and found it super useful. I am converting my query pipeline to tools and feed them into my ReAct agent.
I understand the output of a query pipeline has to be an AgentResponse and will go into the prompt. If i have 1 query pipeline for getting data (e.g. a big pandas dataframe with 100k rows) and another query pipeline of code interpreter for analyzing the data, how do i pass the dataframe to another query pipeline for analysis?
The reason i did not combine these 2 query pipelines is that i want to have the react agent reuse the code interpreter for other things.