Spaces:
Sleeping
Sleeping
Bug Fix - Added animal_category as args in docstring
Browse files
app.py
CHANGED
|
@@ -12,7 +12,7 @@ from Gradio_UI import GradioUI
|
|
| 12 |
def get_local_name_of_animal(animal_category:str)-> str:
|
| 13 |
"""A tool that takes animal category as input and return local name of that input category of animal.
|
| 14 |
Args:
|
| 15 |
-
|
| 16 |
"""
|
| 17 |
if animal_category == 'dog':
|
| 18 |
return 'Jatin'
|
|
|
|
| 12 |
def get_local_name_of_animal(animal_category:str)-> str:
|
| 13 |
"""A tool that takes animal category as input and return local name of that input category of animal.
|
| 14 |
Args:
|
| 15 |
+
animal_category: category of animal
|
| 16 |
"""
|
| 17 |
if animal_category == 'dog':
|
| 18 |
return 'Jatin'
|