generate_response_summary
Compile gathered trade surveillance data into a clear, actionable response summary for user inquiries.
Instructions
Generate a summary response for the user inquiry with all relevant information.
This tool combines all the gathered information into a clear, actionable
response that can be sent back to the user.
Args:
parsed_email: The parsed email inquiry data
config_files: List of config files that were used
report_path: Path to the generated report file
Returns:
A formatted summary string ready to send to the user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parsed_email | Yes | ||
| config_files | Yes | ||
| report_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"config_files": {
"items": {
"type": "string"
},
"title": "Config Files",
"type": "array"
},
"parsed_email": {
"additionalProperties": true,
"title": "Parsed Email",
"type": "object"
},
"report_path": {
"title": "Report Path",
"type": "string"
}
},
"required": [
"parsed_email",
"config_files",
"report_path"
],
"type": "object"
}