MCPcopy Create free account
hub / github.com/aarnphm/whispercpp / SamplingType

Class SamplingType

src/whispercpp/context.h:32–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected