Dannsht commited on
Commit
505cc32
·
verified ·
1 Parent(s): ef04855

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -11,7 +11,16 @@ from Gradio_UI import GradioUI
11
 
12
  @tool
13
  def my_custom_tool(arg1: str, arg2: int) -> str:
14
- """A tool that does nothing yet."""
 
 
 
 
 
 
 
 
 
15
  return "What magic will you build?"
16
 
17
  @tool
 
11
 
12
  @tool
13
  def my_custom_tool(arg1: str, arg2: int) -> str:
14
+ """
15
+ A tool that does nothing yet.
16
+
17
+ Args:
18
+ arg1: Первый аргумент — краткое описание, зачем он нужен.
19
+ arg2: Второй аргумент (число).
20
+
21
+ Returns:
22
+ str: Краткое описание возвращаемого результата.
23
+ """
24
  return "What magic will you build?"
25
 
26
  @tool