namespace AIStudio.Tools.Media;
/// Visible phases of the serialized media import lane.
public enum MediaTranscriptionPhase
{
/// No import is active.
IDLE,
/// The operation is waiting for the serialized runtime lane.
QUEUED,
/// The runtime is inspecting the input.
PROBING,
/// The runtime is preparing normalized audio.
TRANSCODING,
/// The normalized audio is being transcribed by the provider.
UPLOADING,
/// Cancellation was requested and runtime cleanup is in progress.
CANCELING,
}