DuckChat

interface DuckChat

DuckChat interface provides a set of methods for interacting and controlling DuckChat.

Functions

Link copied to clipboard
abstract fun getDuckChatUrl(query: String, autoPrompt: Boolean): String

Returns the Duck Chat URL to be used

Link copied to clipboard
abstract fun isDuckChatUrl(uri: Uri): Boolean

Determines whether a given Uri is a DuckChat URL.

Link copied to clipboard
abstract fun isEnabled(): Boolean

Checks whether DuckChat is enabled based on remote config flag and user preference. Uses a cached value - does not perform disk I/O.

Observes the cosmetic value for the input screen user setting. Returns null if the cosmetic value has not been set before.

Link copied to clipboard

Observes whether Duck.ai input screen with a mode switch is enabled or disabled.

Link copied to clipboard
abstract fun openDuckChat()

Opens the DuckChat WebView with optional pre-filled String query.

Link copied to clipboard
abstract fun openDuckChatWithAutoPrompt(query: String)

Auto-prompts the DuckChat WebView with the provided String query.

Link copied to clipboard
abstract fun openDuckChatWithPrefill(query: String)

Opens Duck Chat with a prefilled String query.

Link copied to clipboard
abstract suspend fun setCosmeticInputScreenUserSetting(enabled: Boolean)

Cosmetically sets the input screen user setting.

Link copied to clipboard
abstract suspend fun setInputScreenUserSetting(enabled: Boolean)

Set user setting to determine whether dedicated Duck.ai input screen with a mode switch should be used.

Link copied to clipboard
abstract fun showNewAddressBarOptionChoiceScreen(context: Context, isDarkThemeEnabled: Boolean)

Displays the new address bar option choice screen.

Link copied to clipboard
abstract suspend fun wasOpenedBefore(): Boolean

Returns true if Duck Chat was ever opened before.