divide
Perform floating-point division for two numbers using this tool. Input values 'a' (dividend) and 'b' (divisor) to calculate the result. Ensure 'b' is non-zero for accurate division.
Instructions
执行浮点数除法运算 Args: b: 除数(必须非零)
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": "divideArguments",
"type": "object"
}