MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / voxcpm2_capabilities

Function voxcpm2_capabilities

src/models/voxcpm2/loader.cpp:48–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46class VoxCPM2Loader final : public runtime::IVoiceModelLoader {
47public:
48 std::string family() const override { return "voxcpm2"; }
49
50 runtime::CapabilitySet advertised_capabilities() const override {
51 runtime::CapabilitySet out;
52 out.supported_tasks = {
53 {runtime::VoiceTaskKind::Tts,
54 {runtime::RunMode::Offline, runtime::RunMode::Streaming}},
55 };
56 out.supports_speaker_reference = true;
57 return out;
58 }
59
60 std::string advertised_instructions_policy() const override {

Callers 2

inspectMethod · 0.85
load_voxcpm2_modelFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected