Fix field

This commit is contained in:
Dongri Jin
2025-03-15 08:51:56 +09:00
parent 5ee2984154
commit 0a04adaf8f

View File

@ -51,8 +51,9 @@ pub enum AudioFormat {
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct AudioTranscription {
pub enabled: bool,
pub model: String,
pub language: Option<String>,
pub model: Option<String>,
pub prompt: Option<String>,
}
#[derive(Debug, Serialize, Deserialize, Clone)]