{
"name": "calculate_sum",
"description": "Calculate the sum of two integers",
"parameters": {
"type": "object",
"properties": {
"a": {
"type": "integer",
"description": "The first integer to add"
},
"b": {
"type": "integer",
"description": "The second integer to add"
}
},
"required": ["a", "b"]
}
}