divide
Perform division by calculating the result of the first number divided by the second. Input numerator (a) and denominator (b) to obtain the quotient.
Instructions
Divide the first number by the second.
Args:
a: Numerator
b: Denominator
Returns:
The result of a / 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"
}