Tools/units
Unit Conversion

Unit Conversion

Active

Models round conversions and mix up dimensions; this converts exactly against a real unit registry.

2 tools

Convert between physical units: length, mass, temperature, area, volume, speed, data size, energy, pressure, power, and angle. Resolves units against a real dimensional registry, so conversions are exact and incompatible dimensions are rejected. Computed locally.

Developer Toolsunitsconversionmeasurementmetricimperial

Tools (2)

Convert a numeric value from one unit of measurement to another.

Free

Example prompts

  • Convert 100 miles to kilometers
  • How many pounds is 5 kilograms?
  • 20 degrees Celsius in Fahrenheit
  • Convert 500 MB to gigabytes

Parameters

valuenumberrequired

The numeric value to convert.

to_unitstringrequired

Target unit name (e.g. kilometer, pound, degree_Fahrenheit).

from_unitstringrequired

Source unit name (e.g. mile, kilogram, degree_Celsius, kilometer/hour).

API Usage

curl -X POST "https://skill.askfaro.com/skills/units/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Convert 100 miles to kilometers"
  }
}'

CLI Usage

askfaro describe units/units.convert

Install pip install askfaro-cli, then askfaro auth login.

List common units grouped by dimension, optionally filtered by a substring.

Free

Example prompts

  • What units can I convert?
  • List mass units
  • Show data-size units
  • Find units containing "meter"

Parameters

querystringoptional

Optional case-insensitive substring to filter dimensions or unit names (e.g. mass, byte).

API Usage

curl -X POST "https://skill.askfaro.com/skills/units/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "What units can I convert?"
  }
}'

CLI Usage

askfaro describe units/units.list_units

Install pip install askfaro-cli, then askfaro auth login.