-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVapi.kt
More file actions
415 lines (354 loc) · 14.6 KB
/
Copy pathVapi.kt
File metadata and controls
415 lines (354 loc) · 14.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
package ai.vapi.android
import android.app.Activity
import android.content.Context
import android.content.pm.PackageManager
import android.util.Log
import androidx.core.app.ActivityCompat
import androidx.core.content.ContextCompat
import co.daily.CallClient
import co.daily.CallClientListener
import co.daily.model.*
import co.daily.model.streaming.StreamingSettings
import co.daily.model.streaming.StreamingVideoSettings
import co.daily.settings.CameraInputSettingsUpdate
import co.daily.settings.ClientSettingsUpdate
import co.daily.settings.Height
import co.daily.settings.InputSettingsUpdate
import co.daily.settings.MicrophoneInputSettingsUpdate
import co.daily.settings.StateBoolean
import co.daily.settings.Torch
import co.daily.settings.VideoMediaTrackSettingsUpdate
import co.daily.settings.Width
import co.daily.settings.ZoomRatio
import com.google.gson.Gson
import com.google.gson.reflect.TypeToken
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.Job
import kotlinx.coroutines.flow.MutableSharedFlow
import kotlinx.coroutines.flow.asSharedFlow
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import java.io.OutputStreamWriter
import java.net.HttpURLConnection
import java.net.URL
public class Vapi(
private val context: Context,
private val configuration: Configuration
) : CallClientListener {
data class Configuration(
val publicKey: String,
val host: String? = "api.vapi.ai",
) {
companion object {
const val DEFAULT_HOST = "api.vapi.ai"
}
}
sealed class Event {
object CallDidStart : Event()
object CallDidEnd : Event()
data class Transcript(
val text: String,
val role: String,
val transcriptType: String,
) : Event()
data class FunctionCall(val name: String, val parameters: Map<String, Any>) : Event()
data class SpeechUpdate(val status: String, val role: String) : Event()
object UserInterrupted: Event()
data class Metadata(val data: Map<String, Any>) : Event()
data class ConversationUpdate(val messages: List<Map<String, Any>>) : Event()
object Hang : Event()
data class Error(val error: String) : Event()
data class ParticipantJoined(val participant: Participant) : Event()
data class ParticipantUpdated(val participant: Participant) : Event()
}
private val gson = Gson()
private var call: CallClient? = null
private val coroutineScope = CoroutineScope(Dispatchers.Main)
private val _eventFlow = MutableSharedFlow<Event>()
val eventFlow = _eventFlow.asSharedFlow()
var localAudioLevel: Float? = null
private set
var remoteAudioLevel: Float? = null
private set
private var isMicrophoneMuted: Boolean = false
suspend fun start(
assistantId: String,
metadata: Map<String, Any> = emptyMap(),
assistantOverrides: Map<String, Any> = emptyMap()
): Result<WebCallResponse> = runCatching {
check(call == null) { "Existing call in progress" }
val body = mapOf(
"assistantId" to assistantId,
"metadata" to metadata,
"assistantOverrides" to assistantOverrides
)
startCall(body)
}
suspend fun start(
assistant: Map<String, Any>,
metadata: Map<String, Any> = emptyMap(),
assistantOverrides: Map<String, Any> = emptyMap()
): Result<WebCallResponse> = runCatching {
check(call == null) { "Existing call in progress" }
val body = mapOf(
"assistant" to assistant,
"metadata" to metadata,
"assistantOverrides" to assistantOverrides
)
startCall(body)
}
fun stop(): Job {
return coroutineScope.launch {
runCatching {
call?.leave()
}.onFailure { callDidFail(it) }
}
}
fun send(message: VapiMessage): Result<Unit> = runCatching {
val jsonString = gson.toJson(message)
call?.sendAppMessage(jsonString, Recipient.All) ?: throw IllegalStateException("No call in progress")
}
private fun setMuted(muted: Boolean): Result<Unit> = runCatching {
val call = call ?: throw IllegalStateException("No call in progress")
val currentInputs = call.inputs()
call.setInputsEnabled(currentInputs.camera.isEnabled, !muted)
isMicrophoneMuted = muted
Log.d("Vapi", if (muted) "Audio muted" else "Audio unmuted")
}
fun toggleMute(): Result<Unit> = setMuted(!isMicrophoneMuted)
private fun joinCall(url: URL, recordVideo: Boolean) {
if (!hasPermissions(recordVideo)) {
requestPermissions(recordVideo)
throw Throwable("Permissions not granted. Allow and try again.")
}
coroutineScope.launch {
runCatching {
val call = CallClient(context)
call.addListener(this@Vapi)
this@Vapi.call = call
val cameraSettings = if (recordVideo) {
CameraInputSettingsUpdate(
StateBoolean.from(true),
settings = VideoMediaTrackSettingsUpdate(
width = Width(1280),
height = Height(720),
torch = Torch(false),
zoom = ZoomRatio(1.0)
)
)
} else {
CameraInputSettingsUpdate(
StateBoolean.from(false),
)
}
val inputSettings = InputSettingsUpdate(
camera = cameraSettings,
microphone = MicrophoneInputSettingsUpdate(
StateBoolean.from(value = true)
)
)
val clientSettings = ClientSettingsUpdate(
inputSettings = inputSettings
)
call.join(
url = url.toString(),
meetingToken = null, // You may need to provide a meeting token if required
clientSettings = clientSettings,
listener = { result ->
if(result.isError){
callDidFail(Throwable(result.error?.msg))
}else{
Log.d("Vapi", "Successfully joined call")
if (recordVideo) {
call.startRecording(streamingSettings = StreamingSettings(
StreamingVideoSettings(
width = 1280,
height = 720,
)
))
}
}
}
)
}.onFailure { callDidFail(it) }
}
}
private fun hasPermissions(recordVideo: Boolean): Boolean {
val microphonePermission = ContextCompat.checkSelfPermission(
context,
android.Manifest.permission.RECORD_AUDIO
)
// If recording video, check camera permission as well
val cameraPermission = if (recordVideo) {
ContextCompat.checkSelfPermission(
context,
android.Manifest.permission.CAMERA
)
} else {
PackageManager.PERMISSION_GRANTED // Consider camera permission granted if not recording video
}
return microphonePermission == PackageManager.PERMISSION_GRANTED &&
cameraPermission == PackageManager.PERMISSION_GRANTED
}
private fun requestPermissions(recordVideo: Boolean) {
val permissionsToRequest = mutableListOf<String>(
android.Manifest.permission.RECORD_AUDIO
)
// Add camera permission if recording video
if (recordVideo) {
permissionsToRequest.add(android.Manifest.permission.CAMERA)
}
ActivityCompat.requestPermissions(
context as Activity,
permissionsToRequest.toTypedArray(),
1001
)
}
private suspend fun startCall(body: Map<String, Any>): WebCallResponse = withContext(Dispatchers.IO) {
val scheme = if (configuration.host == "localhost") "http" else "https"
val port = if (configuration.host == "localhost") ":3001" else ""
val url = URL("$scheme://${configuration.host}$port/call/web")
val connection = url.openConnection() as HttpURLConnection
connection.requestMethod = "POST"
connection.setRequestProperty("Content-Type", "application/json")
connection.setRequestProperty("Authorization", "Bearer ${configuration.publicKey}")
connection.doOutput = true
val jsonBody = gson.toJson(body)
OutputStreamWriter(connection.outputStream).use { it.write(jsonBody) }
val responseCode = connection.responseCode
if (responseCode == HttpURLConnection.HTTP_CREATED) {
val response = connection.inputStream.bufferedReader().use { it.readText() }
val webCallResponse = gson.fromJson(response, WebCallResponse::class.java)
joinCall(webCallResponse.webCallUrl, webCallResponse.artifactPlan?.videoRecordingEnabled ?: false)
webCallResponse
} else {
throw Exception("HTTP error code: $responseCode")
}
}
suspend fun startLocalAudioLevelObserver(): Result<Unit> = runCatching {
call?.startLocalAudioLevelObserver() ?: throw IllegalStateException("No call in progress")
}
suspend fun startRemoteParticipantsAudioLevelObserver(): Result<Unit> = runCatching {
call?.startRemoteParticipantsAudioLevelObserver() ?: throw IllegalStateException("No call in progress")
}
override fun onCallStateUpdated(state: CallState) {
when (state) {
CallState.joined -> callDidJoin()
CallState.left -> callDidLeave()
else -> {}
}
}
override fun onParticipantUpdated(participant: Participant) {
val isPlayable = participant.media?.microphone?.state == MediaState.playable
val isVapiSpeaker = participant.info.userName == "Vapi Speaker"
if (isPlayable && isVapiSpeaker) {
coroutineScope.launch {
runCatching {
call?.sendAppMessage("""{"message":"playable"}""", Recipient.All)
}.onFailure { Log.e("Vapi", "Failed to send playable message", it) }
}
}
coroutineScope.launch {
_eventFlow.emit(Event.ParticipantUpdated(participant))
}
}
override fun onParticipantJoined(participant: Participant) {
coroutineScope.launch {
_eventFlow.emit(Event.ParticipantJoined(participant))
}
}
private fun cleanUpMessage(message: String): String {
// Remove leading and trailing quotes if present
var cleanedMessage = message.trim()
if (cleanedMessage.startsWith("\"") && cleanedMessage.endsWith("\"")) {
cleanedMessage = cleanedMessage.substring(1, cleanedMessage.length - 1)
}
// Unescape any escape sequences
cleanedMessage = cleanedMessage.replace("\\\"", "\"")
.replace("\\\\", "\\")
.replace("\\n", "\n")
.replace("\\t", "\t")
return cleanedMessage
}
override fun onAppMessage(message: String, from: ParticipantId) {
val cleanedMessage = cleanUpMessage(message)
coroutineScope.launch {
runCatching {
// Clean up the message
if (cleanedMessage == "listening") {
_eventFlow.emit(Event.CallDidStart)
return@runCatching
}
val type = object : TypeToken<Map<String, Any>>() {}.type
val jsonObject = gson.fromJson<Map<String, Any>>(cleanedMessage, type)
val event = when (jsonObject["type"] as? String) {
"function-call" -> {
val functionCall = jsonObject["functionCall"] as Map<*, *>
Event.FunctionCall(
functionCall["name"] as String,
functionCall["parameters"] as Map<String, Any>
)
}
"hang" -> Event.Hang
"transcript" -> Event.Transcript(
text = jsonObject["transcript"] as String,
role = (jsonObject["role"] as? String) ?: "assistant",
transcriptType = (jsonObject["transcriptType"] as? String) ?: "partial",
)
"speech-update" -> Event.SpeechUpdate(
status = jsonObject["status"] as String,
role = jsonObject["role"] as String
)
"user-interrupted" -> Event.UserInterrupted
"metadata" -> Event.Metadata(jsonObject["data"] as Map<String, Any>)
"conversation-update" -> Event.ConversationUpdate(jsonObject["messages"] as List<Map<String, Any>>)
else -> null
}
event?.let { _eventFlow.emit(it) }
}.onFailure { Log.e("Vapi", "Error parsing app message: $cleanedMessage", it) }
}
}
override fun onError(message: String) {
callDidFail(Throwable(message))
}
override fun onLocalAudioLevel(audioLevel: Float) {
localAudioLevel = audioLevel
}
override fun onRemoteParticipantsAudioLevel(participantsAudioLevel: Map<ParticipantId, Float>) {
remoteAudioLevel = participantsAudioLevel.values.firstOrNull()
}
private fun callDidJoin() {
Log.d("Vapi", "Successfully joined call.")
}
private fun callDidLeave() {
Log.d("Vapi", "Successfully left call.")
coroutineScope.launch {
_eventFlow.emit(Event.CallDidEnd)
}
call = null
}
private fun callDidFail(error: Throwable) {
Log.e("Vapi", "Got error while joining/leaving call: $error")
coroutineScope.launch {
_eventFlow.emit(Event.Error(error.message ?: "Unknown error"))
}
call = null
}
}
data class VapiMessage(
val type: String,
val message: VapiMessageContent
)
data class VapiMessageContent(
val role: String,
val content: String
)
data class WebCallResponse(
val webCallUrl: URL,
val id: String,
val artifactPlan: ArtifactPlan?,
)
data class ArtifactPlan(
val videoRecordingEnabled: Boolean
)