Gulzat commited on
Commit
62d5870
·
verified ·
1 Parent(s): f9322f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -182,10 +182,10 @@ GradioUI(agent).launch()
182
 
183
  # …the rest of your templates …
184
 
185
- final_answer:
186
- system: |
187
- You have completed all reasoning.
188
- Reply with **only** the final user-facing answer, nothing else.
189
- user: |
190
- {input} # <-- keep this placeholder so the agent can inject the question
191
 
 
182
 
183
  # …the rest of your templates …
184
 
185
+ tools = [
186
+ final_answer, # instance of FinalAnswerTool
187
+ get_current_time_in_timezone, # @tool function
188
+ find_overlapping_work_hours, # @tool function
189
+ # image_generation_tool, # optional
190
+ ]
191