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

    Where a configuration entry came from, when that is not the user: an AI registry entry, or an Agent Plugin that contributed it. Built through AiConfigurationOrigin.registry or AiConfigurationOrigin.agentPlugin rather than by hand, so that the same origin reads the same on every page - an entry's provenance is surfaced in an overview list, on a detail header and in a collapsible row, and those diverged while each page phrased it for itself.

    interface AiConfigurationOrigin {
        activate?: () => void;
        iconClass: string;
        label: string;
        tooltip: string;
    }
    Index

    Properties

    activate?: () => void

    Opens or reveals the origin. Omit for an origin with nothing to navigate to; the badge is then static.

    iconClass: string

    codicon(...) class shown before the label.

    label: string

    Short, on one line next to the entry's name; the tooltip carries the detail.

    tooltip: string