mindee
    Preparing search index...

    Interface BaseParametersAbstract

    Parameters accepted by all v2 products.

    All fields are optional except modelId.

    const params = {
    modelId: "YOUR_MODEL_ID",
    rag: true,
    alias: "YOUR_ALIAS",
    webhookIds: ["YOUR_WEBHOOK_ID_1", "YOUR_WEBHOOK_ID_2"],
    };
    interface BaseParameters {
        alias?: string;
        closeFile?: boolean;
        modelId: string;
        webhookIds?: string[];
        getFormData(): FormData;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alias?: string

    Use an alias to link the file to your own DB. If empty, no alias will be used.

    closeFile?: boolean

    By default, the file is closed once the upload is finished. Set to false to keep it open.

    modelId: string

    Model ID to use for the inference. Required.

    webhookIds?: string[]

    Webhook IDs to call after all processing is finished. If empty, no webhooks will be used.

    Methods