export const fetchForeignExchangeAPI = {
type: "function" as const,
function: {
name: "fetch_foreign_exchange_api",
description: "Get all foreign exchange rates for a base currency from finance API. Never use dollar sign or any currency symbol when answering. Just the currency code.",
parameters: {
type: 'object',
properties: {
baseCurrency: {
type: 'string',
description: 'Base currency code. Like USD, EUR, JPY, GBP, AUD, CAD, CHF, CNY, HKD, NZD, SEK, KRW, SGD, NOK, MXN, INR, RUB, ZAR, TRY, BRL, TWD, DKK, PLN, THB, ILS, IDR, CZK, AED, ARS, CLP, HUF, etc.',
},
...INTENTION_PROPERTY
},
required: ['baseCurrency'],
},
},
};