number_add
Calculate the sum of two numbers using this tool. Input two numeric values to return the result of their addition quickly and accurately.
Instructions
简单的求和工具,当想要计算两个数字相加后的结果时调用
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | 第一个数字 | |
b | Yes | 第二个数字 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"a": {
"description": "第一个数字",
"type": "number"
},
"b": {
"description": "第二个数字",
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}