add
Perform floating-point addition operations with ease using this tool. Input two numbers to quickly calculate their sum, enabling precise arithmetic computations for your needs.
Instructions
执行浮点数加法运算
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | ||
b | Yes |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"title": "A",
"type": "number"
},
"b": {
"title": "B",
"type": "number"
}
},
"required": [
"a",
"b"
],
"title": "addArguments",
"type": "object"
}