add_integers
Calculate the sum of two integers by providing both numbers as input to get their total value.
Instructions
Adds two integers together
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | First integer | |
| b | Yes | Second integer |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"description": "First integer",
"type": "number"
},
"b": {
"description": "Second integer",
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}