andreska commited on
Commit
c06b155
·
verified ·
1 Parent(s): d1b814f

Try to switch to llama model to see if it handles more tokens

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -26,7 +26,8 @@ if st.button("Submit"):
26
  ]
27
 
28
  completion = client.chat.completions.create(
29
- model="Qwen/Qwen2.5-Coder-32B-Instruct",
 
30
  messages=messages,
31
  max_tokens=500
32
  )
 
26
  ]
27
 
28
  completion = client.chat.completions.create(
29
+ #model="Qwen/Qwen2.5-Coder-32B-Instruct",
30
+ model="meta-llama/LLaMA-3-8b",
31
  messages=messages,
32
  max_tokens=500
33
  )