pub enum Step {
ValidateAudio,
PlanChunks,
TranscribeChunk {
index: usize,
total: usize,
},
ParseChunk {
index: usize,
total: usize,
},
ReconcileTranscript,
SplitTranscript,
TrainIdentities,
}Expand description
One ordered pipeline operation.
Variants§
ValidateAudio
Validate the supplied WAV byte buffer.
PlanChunks
Calculate equalized overlapping audio windows.
TranscribeChunk
Prepare and submit one chronological audio chunk to Gemini.
Fields
ParseChunk
Parse and validate one raw Gemini response with GPT.
Fields
ReconcileTranscript
Reconcile all ordered chunks into canonical Markdown.
SplitTranscript
Add safe boundaries when the reconciled transcript is unusually large.
TrainIdentities
Retain every observation only when the complete recording is clean.
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