TanyaVM commited on
Commit
1ea2021
·
verified ·
1 Parent(s): 47ca6a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,5 +6,5 @@ API_TKN = os.environ['HF_API_KEY']
6
 
7
  mistral_models_path = 'TanyaVM/7B-Instruct-v0.3'
8
 
9
-
10
- snapshot_download(repo_id="TanyaVM/mistral_instruct_gen", token = API_TKN,allow_patterns=["params.json", "consolidated.safetensors", "tokenizer.model.v3"],cache_dir="/app/.cache/huggingface")
 
6
 
7
  mistral_models_path = 'TanyaVM/7B-Instruct-v0.3'
8
 
9
+ cache_dir = "C:\Users\PC\mistral_models\7B-Instruct-v0.3\.cache\huggingface"
10
+ snapshot_download(repo_id="TanyaVM/mistral_instruct_gen", token = API_TKN,allow_patterns=["params.json", "consolidated.safetensors", "tokenizer.model.v3"],cache_dir=cache_dir)