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

One more try to get inference llama 3.2 model working

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ if st.button("Submit"):
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
  )
 
27
 
28
  completion = client.chat.completions.create(
29
  #model="Qwen/Qwen2.5-Coder-32B-Instruct",
30
+ model="meta-llama/Llama-3.2-3B-Instruct",
31
  messages=messages,
32
  max_tokens=500
33
  )