Progress Indicators

Set the AgentConfiguration parameter in the UIConfiguration object to false to use an animated ellipses typing indicator instead of a progress indicator. This will only affect progress indicators of service reps, not progress indicators of AI agents and bots.

This feature requires version 1.9.0 or later of the Enhanced In-App Chat SDK.

Important

This article applies to the following implementations:

UI SDKCore SDK
UIConfiguration.swift
1/**
2 * Setting the useProgressIndicators property to false changes the progress
3 * indicator to the animating ellipses.
4 */
5let configuration = UIConfiguration(serviceAPI: <String>, organizationId: <String>, developerName: <name>, conversationId: <UUID>)
6configuration.agentConfiguration = AgentConfiguration(useProgressIndicators: false)