format_currency_amount
Convert numeric amounts to readable currency strings with support for ISO-4217 codes and optional Indian lakh/crore notation.
Instructions
Format a numeric amount as a human-readable currency string. For INR, optionally use Indian lakh/crore notation (₹15.00 L, ₹2.50 Cr). Example queries: 'format 83500 in INR', 'display 25000000 as crores'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | Numeric amount to format. | |
| currency | Yes | ISO-4217 currency code (e.g. USD, INR, GBP, AED). | |
| lakh_crore_format | No | For INR only: use lakh/crore notation (₹15.00 L / ₹2.50 Cr). |