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

    A followup question suggested by the participant.

    interface ChatFollowup {
        command?: string;
        label?: string;
        participant?: string;
        prompt: string;
    }
    Index

    Properties

    command?: string

    By default, the followup goes to the same participant/command. But this property can be set to invoke a different command.

    label?: string

    A title to show the user. The prompt will be shown by default, when this is unspecified.

    participant?: string

    By default, the followup goes to the same participant/command. But this property can be set to invoke a different participant by ID. Followups can only invoke a participant that was contributed by the same extension.

    prompt: string

    The message to send to the chat.