hackmebroo commited on
Commit
4fc7f04
·
verified ·
1 Parent(s): 3f0e724

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -15
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: int = 0) -> 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:
 
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: