Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.22 KB

README.md

File metadata and controls

43 lines (29 loc) · 1.22 KB

pipecat

Pipecat Android Client SDK

RTVI is an open standard for Real-Time Voice (and Video) Inference.

This Android library contains the core components and types needed to set up an RTVI session.

When building an RTVI application, you should use the transport-specific client library (see here for available first-party packages.) The base RTVIClient has no transport included.

Usage

Add the following dependency to your build.gradle file:

implementation "ai.pipecat:client:0.3.0"

Then instantiate the RTVIClient from your code, specifying the backend baseUrl and transport.

val callbacks = object : RTVIEventCallbacks() {

    override fun onBackendError(message: String) {
        Log.e(TAG, "Error from backend: $message")
    }
    
    // ...
}

val client = RTVIClient(transport, callbacks, options)

client.start().withCallback {
    // ...
}

client.start() (and other APIs) return a Future, which can give callbacks, or be awaited using Kotlin Coroutines (client.start().await()).