mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-19 02:52:13 +00:00
16 lines
410 B
C#
16 lines
410 B
C#
namespace AIStudio.Tools.Services;
|
|
|
|
/// <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 caller or user cancelled the operation.</summary>
|
|
CANCELLED,
|
|
} |