pub enum Step {
ValidateAudio,
PlanChunks,
TranscribeChunk {
index: usize,
total: usize,
},
ReconcileTranscript,
SplitTranscript,
}Expand description
One ordered pipeline operation.
Variants§
ValidateAudio
Validate the supplied WAV byte buffer.
PlanChunks
Calculate equalized overlapping audio windows.
TranscribeChunk
Prepare, submit, and validate one chronological audio chunk.
Fields
ReconcileTranscript
Reconcile all ordered chunk transcripts into canonical Markdown.
SplitTranscript
Add safe boundaries when the reconciled transcript is unusually large.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Step
impl<'de> Deserialize<'de> for Step
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Step
impl StructuralPartialEq for Step
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe for Step
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more