adk-realtime 0.6.0

Real-time bidirectional audio/video streaming for Rust Agent Development Kit (ADK-Rust) agents
Documentation
use thiserror::Error;

/// Error type for LiveKit bridging operations.
#[derive(Debug, Error)]
pub enum LiveKitError {
    #[error("LiveKit configuration error: {0}")]
    ConfigError(String),
    #[error(transparent)]
    TokenGenerationError(Box<livekit_api::access_token::AccessTokenError>),
    #[error(transparent)]
    ConnectionError(Box<livekit::prelude::RoomError>),
}

/// Manually implemented to box the inner error, keeping `Result` small on the happy path.
impl From<livekit_api::access_token::AccessTokenError> for LiveKitError {
    fn from(err: livekit_api::access_token::AccessTokenError) -> Self {
        LiveKitError::TokenGenerationError(Box::new(err))
    }
}

/// Manually implemented to box the inner error, keeping `Result` small on the happy path.
impl From<livekit::prelude::RoomError> for LiveKitError {
    fn from(err: livekit::prelude::RoomError) -> Self {
        LiveKitError::ConnectionError(Box::new(err))
    }
}