jkraushaar commited on
Commit
addb49f
·
verified ·
1 Parent(s): ea48321

Try alternative model

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -34,11 +34,13 @@ 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=2096,
40
  temperature=0.5,
41
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
42
  custom_role_conversions=None,
43
  )
44
 
 
34
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
35
 
36
 
37
+ # model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
38
+
39
  final_answer = FinalAnswerTool()
40
  model = HfApiModel(
41
  max_tokens=2096,
42
  temperature=0.5,
43
+ model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud',
44
  custom_role_conversions=None,
45
  )
46