Seicas commited on
Commit
0ac6d59
·
verified ·
1 Parent(s): 2c358c1

Update config.py

Browse files
Files changed (1) hide show
  1. config.py +2 -1
config.py CHANGED
@@ -14,7 +14,7 @@ class Settings(BaseSettings):
14
 
15
  # Hugging Face ayarları
16
  HF_TOKEN: str = "" # Hugging Face API token'ı
17
- HF_CACHE_DIR = Path("/root/.cache/huggingface")
18
 
19
  # ASR ayarları
20
  ASR_MODEL: str = "openai/whisper-small"
@@ -46,3 +46,4 @@ class Settings(BaseSettings):
46
  env_file_encoding = "utf-8"
47
 
48
  settings = Settings()
 
 
14
 
15
  # Hugging Face ayarları
16
  HF_TOKEN: str = "" # Hugging Face API token'ı
17
+ HF_CACHE_DIR: Path = Path("/root/.cache/huggingface") # Hugging Face cache dizini
18
 
19
  # ASR ayarları
20
  ASR_MODEL: str = "openai/whisper-small"
 
46
  env_file_encoding = "utf-8"
47
 
48
  settings = Settings()
49
+