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

KonstantinSource codes8c4603c

master
441 B15 linesraw
1#pragma once
2#include "TranscribeStructs.h"
3#include "../../ComLightLib/comLightCommon.h"
4
5namespace Whisper
6{
7	struct iTranscribeResult : public ComLight::IUnknown
8	{
9		DEFINE_INTERFACE_ID( "{2871a73f-5ce3-48f8-8779-6582ee11935e}" );
10
11		virtual HRESULT COMLIGHTCALL getSize( sTranscribeLength& rdi ) const = 0;
12		virtual const sSegment* COMLIGHTCALL getSegments() const = 0;
13		virtual const sToken* COMLIGHTCALL getTokens() const = 0;
14	};
15}