samirbajaj commited on
Commit
c875270
·
verified ·
1 Parent(s): 11f0c7d

Trying a different model_id

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -39,10 +39,11 @@ final_answer = FinalAnswerTool()
39
 
40
 
41
  model = HfApiModel(
42
- max_tokens=2096,
43
- temperature=0.5,
44
- model_id='https://wxknx1kg971u7k1n.us-east-1.aws.endpoints.huggingface.cloud',# it is possible that this model may be overloaded
45
- custom_role_conversions=None,
 
46
  )
47
 
48
 
 
39
 
40
 
41
  model = HfApiModel(
42
+ max_tokens=2096,
43
+ temperature=0.5,
44
+ #model_id='https://wxknx1kg971u7k1n.us-east-1.aws.endpoints.huggingface.cloud',# it is possible that this model may be overloaded
45
+ model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
46
+ custom_role_conversions=None,
47
  )
48
 
49