(self, model, prompt_path)
| 54 | |
| 55 | class AudioProcessor: |
| 56 | def __init__(self, model, prompt_path): |
| 57 | self.model = model |
| 58 | self.prompt_path = prompt_path |
| 59 | self.initialize_state(prompt_path) |
| 60 | |
| 61 | def initialize_state(self, prompt_path): |
| 62 | loaded_audio, sr = torchaudio.load(prompt_path) |
nothing calls this directly
no test coverage detected