CREATE_SENSITIVITY_TABLE
Generates a 5x5 automated sensitivity Data Table matrix in Excel showing how changing two variables impacts a target value.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
output_path | string | yes | — |
table_title | string | yes | — |
target_metric | string | — | Name of the value being calculated (e.g., 'Share Price') |
row_variable_name | string | — | e.g., 'WACC' |
row_variable_values | array | yes | — |
col_variable_name | string | — | e.g., 'Terminal Growth Rate' |
col_variable_values | array | yes | — |
matrix_values | array | yes | 2D array (list of lists) representing the calculated matrix values |
How to use it
You normally trigger this by describing what you want in chat — the agent selects CREATE_SENSITIVITY_TABLE automatically. For example:
Try saying
“create a analyst tools document”
In a workflow
As a step in a multi-step workflow DAG:
json
{
"id": "s1",
"agent": "analyst_tools",
"action": "CREATE_SENSITIVITY_TABLE",
"args": {
"output_path": "/Users/me/Documents/file.txt",
"table_title": "…",
"row_variable_values": [],
"col_variable_values": [],
"matrix_values": []
},
"depends_on": [],
"outputs": []
}Direct call
For scripting, call it directly via POST /execute_tool. Every tool returns { success, message, data }.
bash
curl -X POST http://127.0.0.1:8000/execute_tool \
-H "Content-Type: application/json" \
-d '{"tool_name":"CREATE_SENSITIVITY_TABLE","args":{"output_path":"/Users/me/Documents/file.txt","table_title":"…","row_variable_values":[],"col_variable_values":[],"matrix_values":[]}}'Part of the analyst_tools plugin. Browse the full Plugin & Tool Catalog or the relevant feature guide.