mazhar75 commited on
Commit
f186c3f
·
verified ·
1 Parent(s): e6cf055

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -8
app.py CHANGED
@@ -18,13 +18,7 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
18
  """
19
  return "What magic will you build ?"
20
 
21
- @tool
22
- def about_author(arg1:str) -> str:
23
- """A tool that tell about the author of this space.
24
- Args:
25
- arg1:A string representation with keyword author of this space.
26
- """
27
- return "I modified by Md. Mazharul Islam"
28
 
29
  @tool
30
  def get_current_time_in_timezone(timezone: str) -> str:
@@ -63,7 +57,7 @@ with open("prompts.yaml", 'r') as stream:
63
 
64
  agent = CodeAgent(
65
  model=model,
66
- tools=[final_answer,my_custom_tool,get_current_time_in_timezone,about_author], ## add your tools here (don't remove final answer)
67
  max_steps=6,
68
  verbosity_level=1,
69
  grammar=None,
 
18
  """
19
  return "What magic will you build ?"
20
 
21
+
 
 
 
 
 
 
22
 
23
  @tool
24
  def get_current_time_in_timezone(timezone: str) -> str:
 
57
 
58
  agent = CodeAgent(
59
  model=model,
60
+ tools=[final_answer,my_custom_tool,get_current_time_in_timezone], ## add your tools here (don't remove final answer)
61
  max_steps=6,
62
  verbosity_level=1,
63
  grammar=None,