(self)
| 154 | assert str(model) == "Whisper (Tiny)" |
| 155 | |
| 156 | def test_str_whisper_cpp(self): |
| 157 | model = TranscriptionModel( |
| 158 | model_type=ModelType.WHISPER_CPP, whisper_model_size=WhisperModelSize.BASE |
| 159 | ) |
| 160 | assert str(model) == "Whisper.cpp (Base)" |
| 161 | |
| 162 | def test_str_hugging_face(self): |
| 163 | model = TranscriptionModel( |
nothing calls this directly
no test coverage detected