Vitrous commited on
Commit
0977991
·
verified ·
1 Parent(s): 6758d5a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -17,6 +17,7 @@ app = FastAPI(root_path="/api/v1")
17
  # Load the model and tokenizer
18
  model_name_or_path = "TheBloke/Wizard-Vicuna-7B-Uncensored-GPTQ"
19
  mistral_model="mistralai/Mistral-7B-Instruct-v0.2"
 
20
  conversations = {}
21
  device = "cuda" # the device to load the model onto
22
 
 
17
  # Load the model and tokenizer
18
  model_name_or_path = "TheBloke/Wizard-Vicuna-7B-Uncensored-GPTQ"
19
  mistral_model="mistralai/Mistral-7B-Instruct-v0.2"
20
+
21
  conversations = {}
22
  device = "cuda" # the device to load the model onto
23