Update app.py
Browse files
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 |
|