Member Junction
    Preparing search index...

    Interface PlatformVariantMeta

    Metadata about how the platform variants were produced.

    interface PlatformVariantMeta {
        llmModel?: string;
        sourceDialect?: DatabasePlatform;
        translatedAt?: string;
        translatedBy?: "manual" | "llm";
        verified?: boolean;
    }
    Index

    Properties

    llmModel?: string

    The LLM model used for translation, if applicable

    sourceDialect?: DatabasePlatform

    The source dialect the SQL was originally written in

    translatedAt?: string

    ISO timestamp of when the translation was performed

    translatedBy?: "manual" | "llm"

    How the translation was produced

    verified?: boolean

    Whether the translation has been verified by a human