diff --git a/src/realtime/types.rs b/src/realtime/types.rs index a9df8bd..83b47c1 100644 --- a/src/realtime/types.rs +++ b/src/realtime/types.rs @@ -51,8 +51,9 @@ pub enum AudioFormat { #[derive(Debug, Serialize, Deserialize, Clone)] pub struct AudioTranscription { - pub enabled: bool, - pub model: String, + pub language: Option, + pub model: Option, + pub prompt: Option, } #[derive(Debug, Serialize, Deserialize, Clone)]