square_root
Calculate the square root of any positive number to find the value that, when multiplied by itself, equals the original number.
Instructions
Calculate the square root of a number.
Args:
number: The number to find the square root of
Returns:
The square root of the number
Raises:
ValueError: If number is negative
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| number | Yes |
Input Schema (JSON Schema)
{
"properties": {
"number": {
"title": "Number",
"type": "number"
}
},
"required": [
"number"
],
"type": "object"
}