plano/tests/rest/hurl/req_param_currency_exchange_tool.py
Adil Hafeez 61ca16068b
rename
2025-03-18 11:57:41 -07:00

21 lines
615 B
Python

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