{
  "name": "get_exchange_rate",
  "description": "获取指定货币对的实时汇率",
  "parameters": {
    "type": "object",
    "properties": {
      "from_currency": {
        "type": "string",
        "description": "源货币代码，如HKD、USD、CNY",
        "enum": ["HKD", "USD", "CNY", "EUR", "JPY"]
      },
      "to_currency": {
        "type": "string", 
        "description": "目标货币代码，如HKD、USD、CNY",
        "enum": ["HKD", "USD", "CNY", "EUR", "JPY"]
      }
    },
    "required": ["from_currency", "to_currency"]
  }
}
