elevenlabs_convai/lib.rs
1/// A module that provides a websocket client for interacting with an ElevenLabs' Conversational AI Agent.
2pub mod client;
3/// A module that provides an error type for the ElevenLabs' Conversational AI.
4pub mod error;
5pub mod messages;
6
7/// An error type for the ElevenLabs Conversational AI.
8pub type Result<T> = std::result::Result<T, error::ConvAIError>;
9
10pub use elevenlabs_rs::endpoints::convai::*;
11pub use elevenlabs_rs::{ElevenLabsClient, DefaultVoice, LegacyVoice};
12