Theia API Documentation v1.69.0
    Preparing search index...

    Options for showing a completion notification.

    interface CompletionNotificationOptions {
        onActivate?: () => void;
        sessionTitle?: string;
        shouldSuppress?: () => boolean;
    }
    Index

    Properties

    onActivate?: () => void

    Callback to invoke when the notification is clicked/activated. Used for navigating to the relevant chat session.

    sessionTitle?: string

    Title of the chat session for display in the notification. Helps distinguish between multiple chats with the same agent.

    shouldSuppress?: () => boolean

    Callback to check if the notification should be suppressed. If returns true, the notification will not be shown.