Spaces:
Sleeping
Sleeping
Update tools.py
Browse files
tools.py
CHANGED
|
@@ -50,7 +50,7 @@ def divide(a: int, b: int) -> int:
|
|
| 50 |
return a / b
|
| 51 |
|
| 52 |
@tool
|
| 53 |
-
def get_studio_album_count(artist_name: str, start_year: int, end_year: int)
|
| 54 |
"""
|
| 55 |
Search music APIs for relevant information related to music artists.
|
| 56 |
It returns a dictionary with the number of albums produced during that interval and the names.
|
|
|
|
| 50 |
return a / b
|
| 51 |
|
| 52 |
@tool
|
| 53 |
+
def get_studio_album_count(artist_name: str, start_year: int, end_year: int) -> dict:
|
| 54 |
"""
|
| 55 |
Search music APIs for relevant information related to music artists.
|
| 56 |
It returns a dictionary with the number of albums produced during that interval and the names.
|