ref: https://github.com/openai/whisper/blob/f82bc59f5ea234d4b97fb2860842ed38519f7e65/whisper/transcribe.py#L264
| 41 | int best_of; // ref: |
| 42 | // https://github.com/openai/whisper/blob/f82bc59f5ea234d4b97fb2860842ed38519f7e65/whisper/transcribe.py#L264 |
| 43 | SamplingGreedy() : best_of(1) {} |
| 44 | SamplingGreedy(int best_of) : best_of(best_of) {} |
| 45 | |
| 46 | SamplingGreedy *with_best_of(int best_of) { |
nothing calls this directly
no outgoing calls
no test coverage detected