We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34a431 commit b156254Copy full SHA for b156254
src/vllm_router/utils.py
@@ -26,6 +26,7 @@
26
27
# retrieves the generated wav bytes, return
28
_SILENT_WAV_BYTES = wav_buffer.getvalue()
29
+ logger.debug("======A default silent WAV file has been stored in memory within py application process====")
30
31
32
class SingletonMeta(type):
@@ -94,6 +95,7 @@ def get_test_payload(model_type: str):
94
95
case ModelType.transcription:
96
# Generate a 0.1 second silent audio file
97
if _SILENT_WAV_BYTES is not None:
98
+ logger.debug("=====Slient WAV Bytes is being used=====")
99
return {
100
"file": ("empty.wav", _SILENT_WAV_BYTES, "audio/wav"),
101
}
0 commit comments