Datalayer VS Code Extension - v0.0.17
    Preparing search index...

    Minimal shape of a runtime handle the webview needs to render its agent picker and configure the <Chat> component. Extracted from the SDK's RuntimeDTO getters.

    interface ChatAgentHandle {
        environmentName: string;
        givenName: string;
        ingress: string;
        podName: string;
        token: string;
    }
    Index

    Properties

    environmentName: string

    Environment name (e.g. ai-agents-env).

    givenName: string

    User-friendly name for the runtime.

    ingress: string

    Ingress URL used as the baseUrl on <Chat>.

    podName: string

    Kubernetes pod name. Unique runtime identifier used as runtimeId on <Chat> for tracking/telemetry. The agentId prop is hard-coded to "default" instead — see webview/agentChat/App.tsx.

    token: string

    Per-runtime auth token used as the authToken on <Chat>.