sguertl commited on
Commit
afd48fc
·
verified ·
1 Parent(s): 3e53cb9

Use v0.3 as model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import os
6
 
7
  app = FastAPI()
8
 
9
- MODEL = "mistralai/Mistral-7B-Instruct-v0.1"
10
  HF_TOKEN = os.environ["HF_TOKEN"]
11
 
12
  client = InferenceClient(model=MODEL, token=HF_TOKEN)
 
6
 
7
  app = FastAPI()
8
 
9
+ MODEL = "mistralai/Mistral-7B-Instruct-v0.3"
10
  HF_TOKEN = os.environ["HF_TOKEN"]
11
 
12
  client = InferenceClient(model=MODEL, token=HF_TOKEN)