Add better error handling for GGUF audio model loading

parent 3daca858
...@@ -3677,6 +3677,8 @@ def main(): ...@@ -3677,6 +3677,8 @@ def main():
except Exception as e: except Exception as e:
print(f"Warning: Could not pre-load audio model: {e}") print(f"Warning: Could not pre-load audio model: {e}")
import traceback
traceback.print_exc()
# Set up TTS model if specified # Set up TTS model if specified
if args.tts_model: if args.tts_model:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment