For the complete documentation index, see llms.txt. This page is also available as Markdown.

Disabling/Enabling In-App Replies

Hide the replies page from the Luciq prompt in your iOS app, or bring it back, controlling whether users can browse their chat history with you.

When the Luciq SDK is invoked, a popup appears to your app users with default Prompt Options for them to "Report a problem" (send you a bug report), "Suggest an improvement" (send you feedback), or "Ask a Question" (send you a question). There is also an option to view the chat history, or replies, page.

The API below can be used to hide the replies page from the user as well as disable it. The button in the prompt options will no longer be visible if this API is used. The in-app notifications will also be disabled, and manually showing the chats list won't have an effect.

Replies.enabled = false
LCQReplies.enabled = NO;

Last updated