jonaschua commited on
Commit
e5c673e
·
verified ·
1 Parent(s): 46e0200

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ def choose_model(model_name):
27
  elif model_name == "Llama3.1-8b-Instruct":
28
  model = "meta-llama/Llama-3.1-8B-Instruct"
29
 
30
- client = InferenceClient(f"{model}, token=os.getenv('deepseekv2')")
31
  return
32
 
33
 
 
27
  elif model_name == "Llama3.1-8b-Instruct":
28
  model = "meta-llama/Llama-3.1-8B-Instruct"
29
 
30
+ client = InferenceClient(model, token=os.getenv('deepseekv2'))
31
  return
32
 
33