Copilot Features
A full breakdown of every Copilot capability — from workflow generation to voice dictation and the AI cost dashboard.
Workflow Generation
Describe what you want in plain English and Copilot generates a complete, ready-to-run workflow with all activities configured, variables declared, and error handling in place.
| 1 | "Read all invoices from invoices.xlsx, filter where Amount > 1000, |
| 2 | send each to POST https://api.example.com/invoice with a JSON body, |
| 3 | and log a summary of how many succeeded vs failed." |
The generated workflow is shown in the Copilot panel as a preview. Click Apply to Canvas to insert it at the current cursor position.
Chat & Q&A
Ask any question about Studio, activities, or automation best practices. The conversation history is preserved within the session. The AI understands context — follow-up with "add error handling to step 3" and it refines the last generated workflow.
Workflow Analysis
Select one or more activities on the canvas and ask Copilot to:
- "Explain what these activities do step by step"
- "Suggest improvements to this loop"
- "Add TryCatch around the HTTP request"
- "What could go wrong here?"
Error Diagnosis
When a workflow run fails, paste the error from the Output Panel into Copilot and ask "what caused this?". The AI reads the stack trace, identifies the likely cause, and suggests a targeted fix — such as changing a selector attribute, adding a Wait For Element, or handling a null reference.
AI Cost Dashboard
The AI Cost Dashboard panel shows a read-only breakdown of API token usage per session — input tokens, output tokens, and an estimated cost per provider. Useful for organisations that want to track LLM spend from Studio usage.
Suggestion Tray
The Suggestion Tray appears at the bottom of the designer when Copilot has generated a workflow step (including from voice). It shows the suggested activity type, pre-filled properties, and a confidence score. Three actions:
- Accept — inserts the activity at the current canvas position
- Edit — opens Properties Panel for review before inserting
- Dismiss — discards the suggestion without inserting