sgur11 commited on
Commit
ccc5f18
·
verified ·
1 Parent(s): 509c93c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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)