convert_temperature
Convert temperature values between Celsius, Fahrenheit, and Kelvin units. Provide the value, source unit, and target unit to get an accurate conversion.
Instructions
Convert a temperature between celsius, fahrenheit, and kelvin.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | The temperature value to convert. | |
| to_unit | Yes | Unit to convert to. | |
| from_unit | Yes | Unit of `value`. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input_unit | Yes | ||
| input_value | Yes | ||
| output_unit | Yes | ||
| output_value | Yes | `input_value` converted to `output_unit`. |