mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-16 16:46:26 +00:00
19 lines
526 B
C#
19 lines
526 B
C#
|
|
namespace AIStudio.Tools.Media;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Terminal outcome of a media transcription operation.
|
||
|
|
/// </summary>
|
||
|
|
public enum MediaTranscriptionResultStatus
|
||
|
|
{
|
||
|
|
/// <summary>The provider returned a usable transcript.</summary>
|
||
|
|
SUCCEEDED,
|
||
|
|
|
||
|
|
/// <summary>The operation failed.</summary>
|
||
|
|
FAILED,
|
||
|
|
|
||
|
|
/// <summary>The media contains no signal above the practical-silence threshold.</summary>
|
||
|
|
NO_AUDIBLE_SIGNAL,
|
||
|
|
|
||
|
|
/// <summary>The caller or user cancelled the operation.</summary>
|
||
|
|
CANCELLED,
|
||
|
|
}
|