Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -82,8 +82,8 @@ vector_store.populate_vectors(dataset=None)
|
|
82 |
# model = AutoModelForCausalLM.from_pretrained(model_name)
|
83 |
|
84 |
# load model orca-mini general purpose model
|
85 |
-
tokenizer = AutoTokenizer.from_pretrained("mistralai/Mistral-7B-Instruct-v0.3")
|
86 |
-
model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-Instruct-v0.3")
|
87 |
|
88 |
# Define the chatbot response function
|
89 |
def chatbot_response(user_input):
|
|
|
82 |
# model = AutoModelForCausalLM.from_pretrained(model_name)
|
83 |
|
84 |
# load model orca-mini general purpose model
|
85 |
+
tokenizer = AutoTokenizer.from_pretrained("models/mistralai/Mistral-7B-Instruct-v0.3")
|
86 |
+
model = AutoModelForCausalLM.from_pretrained("models/mistralai/Mistral-7B-Instruct-v0.3")
|
87 |
|
88 |
# Define the chatbot response function
|
89 |
def chatbot_response(user_input):
|