mymllearner commited on
Commit
aae3252
·
verified ·
1 Parent(s): c2df13f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -9,6 +9,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 combine(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 combines two parameters. It checks if the arguments contain integers or numbers and adds those two if they both are candidates for mathematical addition.
@@ -27,6 +29,7 @@ def combine(arg1:str, arg2:int)-> str: #it's import to specify the return type
27
  else:
28
  final_var = str(arg1)+str(arg2)
29
  return final_var
 
30
 
31
  @tool
32
  def get_current_time_in_timezone(timezone: str) -> str:
@@ -66,7 +69,8 @@ with open("prompts.yaml", 'r') as stream:
66
 
67
  agent = CodeAgent(
68
  model=model,
69
- tools=[final_answer, get_current_time_in_timezone, image_generation_tool, combine], ## add your tools here (don't remove final answer)
 
70
  max_steps=6,
71
  verbosity_level=1,
72
  grammar=None,
 
9
 
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
  @tool
12
+
13
+ """
14
  def combine(arg1:str, arg2:int)-> str: #it's import to specify the return type
15
  #Keep this format for the description / args / args description but feel free to modify the tool
16
  """A tool that combines two parameters. It checks if the arguments contain integers or numbers and adds those two if they both are candidates for mathematical addition.
 
29
  else:
30
  final_var = str(arg1)+str(arg2)
31
  return final_var
32
+ """
33
 
34
  @tool
35
  def get_current_time_in_timezone(timezone: str) -> str:
 
69
 
70
  agent = CodeAgent(
71
  model=model,
72
+ tools=[final_answer, get_current_time_in_timezone, image_generation_tool], ## add your tools here (don't remove final answer)
73
+ # tools=[final_answer, get_current_time_in_timezone, image_generation_tool, combine], ## add your tools here (don't remove final answer)
74
  max_steps=6,
75
  verbosity_level=1,
76
  grammar=None,