| 30 | using namespace pybind11::literals; |
| 31 | |
| 32 | struct SamplingType { |
| 33 | virtual ~SamplingType() = default; |
| 34 | virtual whisper_sampling_strategy to_enum() = 0; |
| 35 | |
| 36 | SamplingType *build() { return this; }; |
| 37 | }; |
| 38 | |
| 39 | struct SamplingGreedy : public SamplingType { |
| 40 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected