For the complete documentation index, see llms.txt. This page is also available as Markdown.

Basic Model Configuration

Reference documentation on preparing and configuring the Mindee model inference.

Parameters that apply to all Mindee model types (Extraction, Split, Crop, etc).

Inference parameters control:

  • which model to use

  • server-side processing options

Use an Alias

The optional alias field lets you attach your own identifier to a request as a free-form string.

For example, an internal document ID, reference number, or database key.

It is echoed back unchanged in both the job and result responses, making it straightforward to correlate API results with your own records.

Aliases are not unique in Mindee, you can use the same alias value multiple times.

inference_params = InferenceParameters(
    # ID of the model, required.
    model_id="MY_MODEL_ID",
    
    # Use an alias to link the file to your own DB.
    # If set, it will be included in the job and result responses.
    alias="internal-doc-id-123",
    
    # ... any other options ...
)

Last updated

Was this helpful?