Implement tts generation

This commit is contained in:
Gabriel Tofvesson 2023-02-28 01:02:55 +01:00
parent 81eec837fb
commit d3b88bb4e1
No known key found for this signature in database
GPG Key ID: 6F1345DF28EDA13E
2 changed files with 20 additions and 1 deletions

View File

@ -1,2 +1,3 @@
pub mod user;
pub mod history;
pub mod history;
pub mod tts;

18
src/api/tts.rs Normal file
View File

@ -0,0 +1,18 @@
use crate::{elevenlabs_api::ElevenLabsAPI, model::{history::AudioItem, error::{HTTPValidationError, APIError}}};
impl ElevenLabsAPI {
pub async fn generate_tts(&self, voice_id: String, text: String) -> Result<AudioItem, APIError> {
let response = self.post(crate::elevenlabs_api::tts::POST::File { voice_id })?.json(&text).send().await?;
if response.status().is_success() {
Ok(AudioItem::new_single(response.bytes().await?))
} else {
let error: HTTPValidationError = response.json().await?;
Err(APIError::HTTPError(error))
}
}
// TODO: Consider stream implementation
}