IdoMachlev
commited on
Commit
·
9f147d5
1
Parent(s):
691565a
added log
Browse files- handler.py +1 -0
handler.py
CHANGED
@@ -67,6 +67,7 @@ class WhisperParameterHandler(BaseSettings):
|
|
67 |
@field_validator("return_timestamps", mode="before")
|
68 |
def cannonize_timestamps(cls, value: Any):
|
69 |
if value == "True":
|
|
|
70 |
return True
|
71 |
|
72 |
return value
|
|
|
67 |
@field_validator("return_timestamps", mode="before")
|
68 |
def cannonize_timestamps(cls, value: Any):
|
69 |
if value == "True":
|
70 |
+
logging.info("return_timestamps == 'True'")
|
71 |
return True
|
72 |
|
73 |
return value
|