query_exchange_rates
Convert currency using 3-letter codes to find real-time exchange rates, enabling accurate cross-currency calculations for financial tasks.
Instructions
根据货币的三位字母代码查询两者之间的兑换汇率
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_code | Yes | 您希望转换的货币的三位字母货币代码。如:CNY | |
to_code | Yes | 您希望转换为目标货币的三位字母货币代码。如:USD |
Input Schema (JSON Schema)
{
"properties": {
"from_code": {
"description": "您希望转换的货币的三位字母货币代码。如:CNY",
"title": "From Code",
"type": "string"
},
"to_code": {
"description": "您希望转换为目标货币的三位字母货币代码。如:USD",
"title": "To Code",
"type": "string"
}
},
"required": [
"from_code",
"to_code"
],
"title": "query_exchange_ratesArguments",
"type": "object"
}