Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -6,17 +6,26 @@ import yaml
|
|
| 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:int)-> str: #it's import to specify the return type
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
-
"""A tool that does nothing yet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
Args:
|
| 16 |
-
arg1:
|
| 17 |
-
arg2:
|
| 18 |
"""
|
| 19 |
-
|
|
|
|
|
|
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 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:int)-> str: #it's import to specify the return type
|
| 14 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 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: A Gregorian date string, e.g., '2025-06-02'
|
| 24 |
+
arg2: Unused placeholder argument
|
| 25 |
"""
|
| 26 |
+
year, month, day = map(int, arg1.split("-"))
|
| 27 |
+
lunar = LunarDate.from_solar_date(year, month, day)
|
| 28 |
+
return f"{arg1} 对应的农历是:{lunar.year}年{lunar.month}月{lunar.day}日"
|
| 29 |
|
| 30 |
@tool
|
| 31 |
def get_current_time_in_timezone(timezone: str) -> str:
|