Srfacehug commited on
Commit
b9bc3d7
·
verified ·
1 Parent(s): 15bbf07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -3
app.py CHANGED
@@ -34,11 +34,17 @@ def get_current_time_in_timezone(timezone: str) -> str:
34
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
35
 
36
 
 
 
 
 
 
 
37
  final_answer = FinalAnswerTool()
38
  model = HfApiModel(
39
- max_tokens=1024,
40
  temperature=0.5,
41
- model_id='Qwen/Qwen2.5-0.5B-Instruct', ## it is possible that this model may be overloaded
42
  custom_role_conversions=None,
43
  )
44
 
@@ -51,7 +57,7 @@ with open("prompts.yaml", 'r') as stream:
51
 
52
  agent = CodeAgent(
53
  model=model,
54
- tools=[final_answer, my_custom_tool, get_current_time_in_timezone], ## add your tools here (don't remove final answer)
55
  max_steps=6,
56
  verbosity_level=1,
57
  grammar=None,
 
34
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
35
 
36
 
37
+ # Dummy function
38
+ @tool
39
+ def get_weather(location):
40
+ return f"the weather in {location} is sunny with low temperatures. \n"
41
+
42
+
43
  final_answer = FinalAnswerTool()
44
  model = HfApiModel(
45
+ max_tokens=2096,
46
  temperature=0.5,
47
+ model_id='Qwen/Qwen2.5-Coder-32B-Instruct', ## it is possible that this model may be overloaded
48
  custom_role_conversions=None,
49
  )
50
 
 
57
 
58
  agent = CodeAgent(
59
  model=model,
60
+ tools=[my_custom_tool, get_current_time_in_timezone, get_weather,final_answer] ## add your tools here (don't remove final answer)
61
  max_steps=6,
62
  verbosity_level=1,
63
  grammar=None,