plano/tests/rest/hurl/req_param_currency_exchange_tool.py
2025-03-19 17:05:10 -07:00

21 lines
609 B
Python

tools = [
{
"name": "exchange_rate",
"description": "Get the current exchange rate",
"parameters": {
"type": "object",
"properties": {
"from_currency": {
"type": "str",
"description": "The currency to convert from",
"default": "USD",
},
"to_currency": {
"type": "str",
"description": "The currency to convert to",
},
},
"required": ["to_currency"],
},
},
]