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
697 B21 linesraw
1namespace Whisper
2{
3	/// <summary>Flags for <see cref="Context.results(eResultFlags)" /> method</summary>
4	[Flags]
5	public enum eResultFlags: uint
6	{
7		/// <summary>No flags</summary>
8		None = 0,
9
10		/// <summary>Return individual tokens in addition to the segments</summary>
11		Tokens = 1,
12
13		/// <summary>Return timestamps</summary>
14		Timestamps = 2,
15
16		/// <summary>Create a new COM object for the results.</summary>
17		/// <remarks>Without this flag, the context returns a pointer to the COM object stored in the context.<br/>
18		/// The content of that object is replaced every time you call <see cref="Internal.iContext.getResults(eResultFlags)" /> method.</remarks>
19		NewObject = 0x100,
20	}
21}