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
348 B12 linesraw
1#pragma once
2#include "TranscribeStructs.h"
3
4namespace Whisper
5{
6	__interface __declspec( novtable, uuid( "2871a73f-5ce3-48f8-8779-6582ee11935e" ) ) iTranscribeResult : public IUnknown
7	{
8		HRESULT __stdcall getSize( sTranscribeLength& rdi ) const;
9		const sSegment* __stdcall getSegments() const;
10		const sToken* __stdcall getTokens() const;
11	};
12}