Update app.py
Browse files
app.py
CHANGED
@@ -3,10 +3,19 @@ from huggingface_hub import hf_hub_download
|
|
3 |
HUGGING_FACE_API_KEY = "<hugging-face-api-key-goes-here>"
|
4 |
|
5 |
# Replace this if you want to use a different model
|
6 |
-
model_id = "
|
7 |
filenames = [
|
8 |
-
"
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
]
|
11 |
|
12 |
for filename in filenames:
|
|
|
3 |
HUGGING_FACE_API_KEY = "<hugging-face-api-key-goes-here>"
|
4 |
|
5 |
# Replace this if you want to use a different model
|
6 |
+
model_id = "INSAIT-Institute/BgGPT-7B-Instruct-v0.1"
|
7 |
filenames = [
|
8 |
+
".gitattributes",
|
9 |
+
"README.md",
|
10 |
+
"config.json",
|
11 |
+
"generation_config.json",
|
12 |
+
"model-00001-of-00002.safetensors",
|
13 |
+
"model-00002-of-00002.safetensors",
|
14 |
+
"model.safetensors.index.json",
|
15 |
+
"special_tokens_map.json",
|
16 |
+
"tokenizer.json",
|
17 |
+
"tokenizer.model",
|
18 |
+
"tokenizer_config.json"
|
19 |
]
|
20 |
|
21 |
for filename in filenames:
|