This library exports a voice client that is bundled with a transport layer that talks directly to the OpenAI Realtime.
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/pipecat-ai/pipecat-client-ios-openai-realtime.git", from: "0.0.1"),
and add "PipecatClientIOSOpenAIRealtimeWebrtc"
to your application/library target, dependencies
, e.g. like this:
.target(name: "YourApp", dependencies: [
.product(name: "PipecatClientIOSOpenAIRealtimeWebrtc", package: "pipecat-client-ios-openai-realtime")
],
Instantiate a VoiceClient
instance, wire up the bot's audio, and start the conversation:
let rtviClientOptions = RTVIClientOptions.init(
enableMic: true,
params: .init(config: [
.init(
service: "llm",
options: [
.init(name: "api_key", value: .string(openaiAPIKey)),
.init(name: "initial_messages", value: .array([
.object([
"role": .string("user"),
"content": .string("Start by introducing yourself.")
])
])),
.init(name: "session_config", value: .object([
"instructions": .string("You are Chatbot, a friendly, helpful robot.")
]))
]
)
])
)
self.rtviClientIOS = RTVIClient.init(
transport: OpenAIRealtimeTransport.init(options: rtviClientOptions),
options: rtviClientOptions
)
try await rtviClientIOS.start()
We are welcoming contributions to this project in form of issues and pull request. For questions about Pipecat head over to the Pipecat discord server.