Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ from transformers import pipeline, AutoModelForCausalLM, AutoTokenizer
|
|
3 |
|
4 |
app = FastAPI()
|
5 |
|
6 |
-
model_id = "ibleducation/ibl-fordham-7b"
|
7 |
|
8 |
tokenizer = AutoTokenizer.from_pretrained(model_id, cache_dir=".")
|
9 |
model = AutoModelForCausalLM.from_pretrained(
|
|
|
3 |
|
4 |
app = FastAPI()
|
5 |
|
6 |
+
model_id = "ibleducation/ibl-fordham-7b-mistral"
|
7 |
|
8 |
tokenizer = AutoTokenizer.from_pretrained(model_id, cache_dir=".")
|
9 |
model = AutoModelForCausalLM.from_pretrained(
|