AIEnthusiast369 commited on
Commit
0fd1c58
·
1 Parent(s): 3bb13a2

changed Error to Warning when loading env file

Browse files
Files changed (1) hide show
  1. streamlit_app/config.py +1 -1
streamlit_app/config.py CHANGED
@@ -27,7 +27,7 @@ def load_config() -> Config:
27
  print(f"env_path: {env_path}")
28
  load_dotenv(env_path)
29
  else:
30
- print(f"Error: Environment file not found at: {env_path}")
31
 
32
  return {
33
  "WHISPER_MODEL": os.getenv("WHISPER_MODEL","small"),
 
27
  print(f"env_path: {env_path}")
28
  load_dotenv(env_path)
29
  else:
30
+ print(f"Warning: Environment file not found at: {env_path}")
31
 
32
  return {
33
  "WHISPER_MODEL": os.getenv("WHISPER_MODEL","small"),