Kr08 commited on
Commit
5096cb5
1 Parent(s): f0f9802

created configuration file

Browse files
Files changed (1) hide show
  1. config.py +8 -0
config.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # Audio processing constants
2
+ SAMPLING_RATE = 16000
3
+ CHUNK_LENGTH_S = 20 # 20 seconds per chunk
4
+
5
+ # Model constants
6
+ WHISPER_MODEL_SIZE = "small"
7
+
8
+ # Other constants can be added here as needed