Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -6,26 +6,19 @@ import yaml
|
|
| 6 |
from tools.final_answer import FinalAnswerTool
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
| 9 |
-
from cnlunardate import LunarDate
|
| 10 |
|
| 11 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 12 |
@tool
|
| 13 |
-
def my_custom_tool(arg1: str, arg2:
|
| 14 |
-
|
| 15 |
-
# """A tool that does nothing yet
|
| 16 |
-
# Args:
|
| 17 |
-
# arg1: the first argument
|
| 18 |
-
# arg2: the second argument
|
| 19 |
-
# """
|
| 20 |
-
# return "What magic will you build ?"
|
| 21 |
-
"""A tool that converts a Gregorian date (format: YYYY-MM-DD) to the Chinese lunar calendar.
|
| 22 |
Args:
|
| 23 |
-
arg1:
|
| 24 |
-
arg2:
|
| 25 |
"""
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
|
|
|
| 29 |
|
| 30 |
@tool
|
| 31 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 6 |
from tools.final_answer import FinalAnswerTool
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
|
|
|
| 9 |
|
| 10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 11 |
@tool
|
| 12 |
+
def my_custom_tool(arg1: str, arg2: str) -> str:
|
| 13 |
+
"""Counts how many times a specific letter appears in a given text.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
Args:
|
| 15 |
+
arg1: The input text to search.
|
| 16 |
+
arg2: The letter to count (e.g., 'a').
|
| 17 |
"""
|
| 18 |
+
if len(arg2) != 1 or not arg2.isalpha():
|
| 19 |
+
return "Error: arg2 must be a single alphabet letter."
|
| 20 |
+
count = arg1.count(arg2)
|
| 21 |
+
return f"The letter '{arg2}' appears {count} time(s) in the text."
|
| 22 |
|
| 23 |
@tool
|
| 24 |
def get_current_time_in_timezone(timezone: str) -> str:
|