diff --git a/endpoints/lollms_advanced.py b/endpoints/lollms_advanced.py index 4a16f5b1..9eab2495 100644 --- a/endpoints/lollms_advanced.py +++ b/endpoints/lollms_advanced.py @@ -489,7 +489,7 @@ def start_recording(data:Identification): model=lollmsElfServer.config.whisper_model, snd_input_device=lollmsElfServer.config.stt_input_device, snd_output_device=lollmsElfServer.config.tts_output_device, - logs_folder="logs", + logs_folder=lollmsElfServer.rec_output_folder, voice=None, block_while_talking=True, context_size=4096 diff --git a/events/lollms_interactive_events.py b/events/lollms_interactive_events.py index 5d41c5a8..adf1830f 100644 --- a/events/lollms_interactive_events.py +++ b/events/lollms_interactive_events.py @@ -84,7 +84,7 @@ def add_events(sio:socketio): model=lollmsElfServer.config.whisper_model, snd_input_device=lollmsElfServer.config.stt_input_device, snd_output_device=lollmsElfServer.config.tts_output_device, - logs_folder="logs", + logs_folder=lollmsElfServer.rec_output_folder, voice=None, block_while_talking=True, context_size=4096