Spaces:
Sleeping
Sleeping
fix bug in get_current_exchange_rate_in_USD to just return rate
Browse files
app.py
CHANGED
@@ -19,18 +19,17 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
19 |
return "What magic will you build ?"
|
20 |
|
21 |
@tool
|
22 |
-
def get_current_exchange_rate_in_USD(currency: str
|
23 |
"""A tool that fetches the current exchange rate for specified currency against the US Dollar (USD)
|
24 |
Args:
|
25 |
currency: A string representing a valid currency (e.g., 'CAD' for Canadian Dollar).
|
26 |
-
amount: A float representing an amount of currency to convert to USD.
|
27 |
"""
|
28 |
data_url = 'https://open.er-api.com/v6/latest/USD'
|
29 |
try:
|
30 |
r = requests.get(data_url)
|
31 |
rates = r.json()['rates']
|
32 |
rate = rates[currency.upper()]
|
33 |
-
return f"{
|
34 |
except Exception as e:
|
35 |
return f"Error fetching currency rate for '{currency}': {str(e)}"
|
36 |
|
|
|
19 |
return "What magic will you build ?"
|
20 |
|
21 |
@tool
|
22 |
+
def get_current_exchange_rate_in_USD(currency: str) -> str:
|
23 |
"""A tool that fetches the current exchange rate for specified currency against the US Dollar (USD)
|
24 |
Args:
|
25 |
currency: A string representing a valid currency (e.g., 'CAD' for Canadian Dollar).
|
|
|
26 |
"""
|
27 |
data_url = 'https://open.er-api.com/v6/latest/USD'
|
28 |
try:
|
29 |
r = requests.get(data_url)
|
30 |
rates = r.json()['rates']
|
31 |
rate = rates[currency.upper()]
|
32 |
+
return f"{currency.upper()} currency is worth ${rate} US dollars."
|
33 |
except Exception as e:
|
34 |
return f"Error fetching currency rate for '{currency}': {str(e)}"
|
35 |
|