Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -244,7 +244,16 @@ with open("prompts.yaml", 'r') as stream:
|
|
244 |
|
245 |
agent = CodeAgent(
|
246 |
model=model,
|
247 |
-
tools=[final_answer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
max_steps=6,
|
249 |
verbosity_level=1,
|
250 |
grammar=None,
|
|
|
244 |
|
245 |
agent = CodeAgent(
|
246 |
model=model,
|
247 |
+
tools=[final_answer,
|
248 |
+
get_horoscope,
|
249 |
+
get_date_panchang,
|
250 |
+
get_holidays,
|
251 |
+
get_panchang_field,
|
252 |
+
get_festivals_today,
|
253 |
+
get_current_time_in_timezone,
|
254 |
+
my_custom_tool,
|
255 |
+
image_generation_tool
|
256 |
+
], ## add your tools here (don't remove final answer)
|
257 |
max_steps=6,
|
258 |
verbosity_level=1,
|
259 |
grammar=None,
|