rmartinshort commited on
Commit
48a28a5
·
verified ·
1 Parent(s): 2c5c85b

change model

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -46,11 +46,12 @@ def get_current_time_in_timezone(timezone: str) -> str:
46
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
47
 
48
 
 
49
  final_answer = FinalAnswerTool()
50
  model = HfApiModel(
51
  max_tokens=2096,
52
  temperature=0.5,
53
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
54
  custom_role_conversions=None,
55
  )
56
 
 
46
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
47
 
48
 
49
+ MODLEL = "Qwen/Qwen2.5-Coder-7B-Instruct"
50
  final_answer = FinalAnswerTool()
51
  model = HfApiModel(
52
  max_tokens=2096,
53
  temperature=0.5,
54
+ model_id=MODEL,
55
  custom_role_conversions=None,
56
  )
57