This case was documented in the SDK README but doesn't exist in the actual enumm should be connectingRoom
From the README:
case .connectingToRoom:
print("Connecting to LiveKit room..."
Enum
public enum ConversationStartupState: Sendable, Equatable {
case idle
case resolvingToken
case connectingRoom
case waitingForAgent(timeout: TimeInterval)
case agentReady(ConversationAgentReadyReport)
case sendingConversationInit(attempt: Int)
case active(CallInfo, ConversationStartupMetrics)
case failed(ConversationStartupFailure, ConversationStartupMetrics)
}
This case was documented in the SDK README but doesn't exist in the actual enumm should be
connectingRoomFrom the README:
Enum