pub enum Step {
ValidateAudio,
PlanChunks,
TranscribeChunk {
index: usize,
total: usize,
},
AnalyzeSpeakers,
ReconcileTranscript,
}Expand description
One ordered pipeline operation.
Variants§
ValidateAudio
Validate the supplied WAV byte buffer.
PlanChunks
Calculate frozen-contract overlapping audio windows.
TranscribeChunk
Prepare and submit one chronological audio chunk to Gemini.
Fields
AnalyzeSpeakers
Normalize all raw Gemini feature profiles in one recording-wide GPT call.
ReconcileTranscript
Reconcile signed-off chunks into canonical Markdown in one final GPT call.
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