Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.64 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.64 KB

Real-Time Voice Inference iOS SDK

RTVI-AI is an open standard for Real-Time Voice [and Video] Inference.

This iOS core library exports a VoiceClient that has no associated transport.

When building an RTVI application, you should use your transport-specific export (see here for available first-party packages.) The base class has no out-of-the-box bindings included.

Install

To depend on the client package, you can add this package via Xcode's package manager using the URL of this git repository directly, or you can declare your dependency in your Package.swift:

.package(url: "https://github.com/rtvi-ai/rtvi-client-ios.git", from: "0.1.0"),

and add "RTVIClientIOS" to your application/library target, dependencies, e.g. like this:

.target(name: "YourApp", dependencies: [
    .product(name: "RTVIClientIOS", package: "rtvi-client-ios")
],

References

Contributing

We are welcoming contributions to this project in form of issues and pull request. For questions about RTVI head over to the Pipecat discord server and check the #rtvi channel.