Implement tts generation
This commit is contained in:
parent
81eec837fb
commit
d3b88bb4e1
@ -1,2 +1,3 @@
|
||||
pub mod user;
|
||||
pub mod history;
|
||||
pub mod history;
|
||||
pub mod tts;
|
18
src/api/tts.rs
Normal file
18
src/api/tts.rs
Normal 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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user