JerryGao commited on
Commit
aa2522d
·
verified ·
1 Parent(s): 994179f

Update app.py

Browse files

update model with default one

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -40,7 +40,7 @@ final_answer = FinalAnswerTool()
40
  # meta-llama/Llama-3.2-3B-Instruct
41
  # meta-llama/Llama-3.2-1B-Instruct
42
  # meta-llama/Meta-Llama-3-8B-Instruct
43
- # microsoft/Phi-3.5-mini-instruct
44
  # model = HfApiModel(
45
  # max_tokens=2096,
46
  # temperature=0.5,
@@ -51,7 +51,7 @@ final_answer = FinalAnswerTool()
51
  model = HfApiModel(
52
  max_tokens=2096,
53
  temperature=0.5,
54
- model_id='microsoft/Phi-3.5-mini-instruct',
55
  custom_role_conversions=None,
56
  )
57
 
 
40
  # meta-llama/Llama-3.2-3B-Instruct
41
  # meta-llama/Llama-3.2-1B-Instruct
42
  # meta-llama/Meta-Llama-3-8B-Instruct
43
+
44
  # model = HfApiModel(
45
  # max_tokens=2096,
46
  # temperature=0.5,
 
51
  model = HfApiModel(
52
  max_tokens=2096,
53
  temperature=0.5,
54
+ model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
55
  custom_role_conversions=None,
56
  )
57