deniyoz commited on
Commit
7a4886d
·
verified ·
1 Parent(s): fec67cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -73,7 +73,11 @@ with open("prompts.yaml", 'r') as stream:
73
 
74
  agent = CodeAgent(
75
  model=model,
76
- tools=[final_answer], ## add your tools here (don't remove final answer)
 
 
 
 
77
  max_steps=6,
78
  verbosity_level=1,
79
  grammar=None,
@@ -84,4 +88,5 @@ agent = CodeAgent(
84
  )
85
 
86
 
 
87
  GradioUI(agent).launch()
 
73
 
74
  agent = CodeAgent(
75
  model=model,
76
+ tools=[
77
+ final_answer,
78
+ get_current_time_in_timezone,
79
+ convert_currency
80
+ ], # convert_currency aracını ekledik
81
  max_steps=6,
82
  verbosity_level=1,
83
  grammar=None,
 
88
  )
89
 
90
 
91
+
92
  GradioUI(agent).launch()