Nonin commited on
Commit
1a1c87d
·
verified ·
1 Parent(s): d8f08aa

Update app.py

Browse files

change model id

Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -87,11 +87,12 @@ final_answer = FinalAnswerTool()
87
 
88
  # If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
89
  # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
 
90
 
91
  model = HfApiModel(
92
  max_tokens=2096,
93
  temperature=0.5,
94
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
95
  custom_role_conversions=None,
96
  )
97
 
 
87
 
88
  # If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
89
  # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
90
+ # original model : model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
91
 
92
  model = HfApiModel(
93
  max_tokens=2096,
94
  temperature=0.5,
95
+ model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud',# it is possible that this model may be overloaded
96
  custom_role_conversions=None,
97
  )
98