pub enum ConversationNodeTranscriber {
AssemblyAiTranscriber(AssemblyAiTranscriber),
AzureSpeechTranscriber(AzureSpeechTranscriber),
CustomTranscriber(CustomTranscriber),
DeepgramTranscriber(DeepgramTranscriber),
ElevenLabsTranscriber(ElevenLabsTranscriber),
GladiaTranscriber(GladiaTranscriber),
GoogleTranscriber(GoogleTranscriber),
SpeechmaticsTranscriber(SpeechmaticsTranscriber),
TalkscriberTranscriber(TalkscriberTranscriber),
OpenAiTranscriber(OpenAiTranscriber),
CartesiaTranscriber(CartesiaTranscriber),
}
Expand description
ConversationNodeTranscriber : This is the transcriber for the node. This overrides workflow.transcriber
.
This is the transcriber for the node. This overrides workflow.transcriber
.
Variants§
AssemblyAiTranscriber(AssemblyAiTranscriber)
AzureSpeechTranscriber(AzureSpeechTranscriber)
CustomTranscriber(CustomTranscriber)
DeepgramTranscriber(DeepgramTranscriber)
ElevenLabsTranscriber(ElevenLabsTranscriber)
GladiaTranscriber(GladiaTranscriber)
GoogleTranscriber(GoogleTranscriber)
SpeechmaticsTranscriber(SpeechmaticsTranscriber)
TalkscriberTranscriber(TalkscriberTranscriber)
OpenAiTranscriber(OpenAiTranscriber)
CartesiaTranscriber(CartesiaTranscriber)
Trait Implementations§
Source§impl Clone for ConversationNodeTranscriber
impl Clone for ConversationNodeTranscriber
Source§fn clone(&self) -> ConversationNodeTranscriber
fn clone(&self) -> ConversationNodeTranscriber
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConversationNodeTranscriber
impl Debug for ConversationNodeTranscriber
Source§impl<'de> Deserialize<'de> for ConversationNodeTranscriber
impl<'de> Deserialize<'de> for ConversationNodeTranscriber
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 StructuralPartialEq for ConversationNodeTranscriber
Auto Trait Implementations§
impl Freeze for ConversationNodeTranscriber
impl RefUnwindSafe for ConversationNodeTranscriber
impl Send for ConversationNodeTranscriber
impl Sync for ConversationNodeTranscriber
impl Unpin for ConversationNodeTranscriber
impl UnwindSafe for ConversationNodeTranscriber
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