plano/tests/rest/hurl/req_param_currency_exchange_tool.py

22 lines
615 B
Python
Raw Normal View History

2025-03-18 11:55:21 -07:00
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"],
},
},
]