jrmagallanes commited on
Commit
9fc32d2
·
verified ·
1 Parent(s): bc271b1

Try open ai gpt

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -97,10 +97,10 @@ final_answer = FinalAnswerTool()
97
  # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
98
 
99
  model = HfApiModel(
100
- max_tokens=2096,
101
- temperature=0.5,
102
- model_id='Qwen/Qwen3-Coder-30B-A3B-Instruct',# it is possible that this model may be overloaded
103
- custom_role_conversions=None,
104
  )
105
 
106
 
 
97
  # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
98
 
99
  model = HfApiModel(
100
+ max_tokens=2096,
101
+ temperature=0.5,
102
+ model_id='openai/gpt-oss-20b',
103
+ custom_role_conversions=None,
104
  )
105
 
106