yum-archive/TaSTT-Whisper
High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model
git clone https://git.yummers.dev/yum-archive/TaSTT-Whisper
8c4603c
master
1#pragma once 2#include "TranscribeStructs.h" 3#include "../../ComLightLib/comLightCommon.h" 4 5namespace Whisper 6{ 7struct iTranscribeResult :public ComLight ::IUnknown 8 { 9DEFINE_INTERFACE_ID ("{2871a73f-5ce3-48f8-8779-6582ee11935e}" ); 10 11virtual HRESULT COMLIGHTCALL getSize (sTranscribeLength & rdi )const = 0 ; 12virtual const sSegment * COMLIGHTCALL getSegments ()const = 0 ; 13virtual const sToken * COMLIGHTCALL getTokens ()const = 0 ; 14 }; 15}