Iceman08 commited on
Commit
6656606
1 Parent(s): 5bde9fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -3
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 = "lmsys/fastchat-t5-3b-v1.0"
7
  filenames = [
8
- "pytorch_model.bin", "added_tokens.json", "config.json", "generation_config.json",
9
- "special_tokens_map.json", "spiece.model", "tokenizer_config.json"
 
 
 
 
 
 
 
 
 
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: