(audio, text, model_choice)
| 267 | if spaces is not None: |
| 268 | @spaces.GPU(duration=120) |
| 269 | def inference_entry(audio, text, model_choice): |
| 270 | return inference(audio, text, model_choice) |
| 271 | else: |
| 272 | def inference_entry(audio, text, model_choice): |
| 273 | return inference(audio, text, model_choice) |
nothing calls this directly
no test coverage detected