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

    Props for the App component.

    interface AppProps {
        agents: ChatAgentHandle[];
        agentsError: string;
        auth: AgentChatAuthState;
        client: IAgentRuntimesClient;
        creatingAgent: boolean;
        onCreateAgent: () => void;
        onLogin: () => void;
        onRefreshAgents: () => void;
        settings: AgentChatSettings;
        theme: "light" | "dark";
    }
    Index

    Properties

    agents: ChatAgentHandle[]

    Available runtime agents, or null while loading.

    agentsError: string

    Error from agent listing, if any.

    Authentication state.

    Bridge client implementing IAgentRuntimesClient, or null.

    creatingAgent: boolean

    True while a sidebar-initiated agent provisioning is in flight. Drives the spinner shown in place of the "Create Agent" button so the user gets immediate feedback during the 5–30s spin-up window.

    onCreateAgent: () => void

    Callback to create a new agent runtime.

    onLogin: () => void

    Callback to trigger the Datalayer sign-in flow.

    onRefreshAgents: () => void

    Callback to request agent list refresh.

    Chat settings from VS Code configuration.

    theme: "light" | "dark"

    Current VS Code theme.