A very simple Rust library for Elevenlabs API, free from complex async operations and redundant dependencies. Inspired by openai-api.
Check the official API reference.
|API|Support| |---|---| |Text to Speech|✔️| |Text to Speech Stream|❌| |Models|❌| |Voices|❌| |Samples|❌| |History|❌| |User|❌|
Install the library using the Cargo.toml file.
Export your API key into the environment variables
console
export ELEVENLABS_API_KEY=...
Then use the crate in your Rust code:
```rust // import the dependencies use elevenlabs_api::{ tts::{TtsApi, TtsBody}, *, };
// Load API key from environment ELEVENLABSAPIKEY.
// You can also hadcode through Auth::new(<your_api_key>)
, but it is not recommended.
let auth = Auth::from_env().unwrap();
let elevenlabs = Elevenlabs::new(auth, "https://api.elevenlabs.io/v1/");
// Create the tts body. let ttsbody = TtsBody { modelid: None, text: "Hello world".tostring(), voicesettings: None, };
// Generate the speech for the text by using the voice with id yoZ06aMxZJJ28mfd3POQ. let ttsresult = elevenlabs.tts(&ttsbody, "yoZ06aMxZJJ28mfd3POQ"); let bytes = tts_result.unwrap();
// Do what you need with the bytes. // The server responds with "audio/mpeg" so we can save as mp3. std::fs::write("tts.mp3", bytes).unwrap(); ```
Check the examples folder.