How to migrate from ElevenLabs Swift SDK to Outspeed Swift SDK.
ElevenLabsSDK
OutspeedSDK
import ElevenLabsSDK let config = ElevenLabsSDK.SessionConfig( agentId : "testagent")
import OutspeedSDK let config = OutspeedSDK.SessionConfig( agentId : "testagent")
startSession
let conversation = try await ElevenLabsSDK.Conversation.startSession( config: config, callbacks: callbacks )
let conversation = try await OutspeedSDK.Conversation.startSession( config: config, callbacks: callbacks apiKey: "<YOUR_OUTSPEED_API_KEY>" )
Was this page helpful?