This is my first time building an agent in Studio Web. In my scenario, I’ve created a web‑search agent, and I need to pass the output argument values into a spreadsheet. Can anyone help me understand how to do this?
@adarsh_kotagiri PFB screenshot
You can add RPA workflow as a tool in your agent to write the output you got from web search tool.
1 Like
You can’t write to Excel directly inside the Studio Web agent. Do it via a tool/automation.
- Define the agent Output schema (which you already did – array with Name, ClosingTime, Cuisine, etc.).
- Create a Studio (desktop or web) automation with:
- Input = same structure (list/JSON).
- Use Excel / Write Range activity to write data to spreadsheet.
- In Studio Web Agent → Tools, add “Run Automation” (or API).
- Pass the agent output object to that automation as input.
- Automation writes the data to Excel.
Flow:
Agent (Web Search)
→ Output (Array/JSON)
→ Run Automation tool
→ Excel Write
Studio Web agents generate data, but file operations (Excel) must be done via a called automation or API, not inside the agent itself.
Thank you so much @Gokul001
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.

