STT/whisper_stt_handler.py [61:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if self.compile_mode:
            self.model.generation_config.cache_implementation = "static"
            self.model.forward = torch.compile(
                self.model.forward, mode=self.compile_mode, fullgraph=True
            )
        self.warmup()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



TTS/parler_handler.py [94:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if self.compile_mode:
            self.model.generation_config.cache_implementation = "static"
            self.model.forward = torch.compile(
                self.model.forward, mode=self.compile_mode, fullgraph=True
            )

        self.warmup()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



