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

    Interface LLMCompletionRequestMessage

    LLM completion request from webview

    interface LLMCompletionRequestMessage {
        contentType?: "code" | "prose";
        language: string;
        prefix: string;
        requestId: string;
        suffix: string;
        trigger?: "auto" | "manual";
        type: "llm-completion-request";
    }
    Index

    Properties

    contentType?: "code" | "prose"

    Content type (code or prose) for appropriate prompt selection

    language: string

    Programming language

    prefix: string

    Text before cursor

    requestId: string

    Request ID for correlation

    suffix: string

    Text after cursor

    trigger?: "auto" | "manual"

    Trigger type (auto or manual)

    type: "llm-completion-request"

    Message type discriminator