Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -53,7 +53,8 @@ image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_co
|
|
| 53 |
|
| 54 |
with open("prompts.yaml", 'r') as stream:
|
| 55 |
prompt_templates = yaml.safe_load(stream)
|
| 56 |
-
|
|
|
|
| 57 |
agent = CodeAgent(
|
| 58 |
model=model,
|
| 59 |
tools=[final_answer,DuckDuckGoSearchTool(),get_current_time_in_timezone(timezone)], ## add your tools here (don't remove final answer)
|
|
|
|
| 53 |
|
| 54 |
with open("prompts.yaml", 'r') as stream:
|
| 55 |
prompt_templates = yaml.safe_load(stream)
|
| 56 |
+
|
| 57 |
+
timezone = 'Asia/Kolkata'
|
| 58 |
agent = CodeAgent(
|
| 59 |
model=model,
|
| 60 |
tools=[final_answer,DuckDuckGoSearchTool(),get_current_time_in_timezone(timezone)], ## add your tools here (don't remove final answer)
|