Basic Model Configuration
Reference documentation on preparing and configuring the Mindee model inference.
Use an Alias
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 ...
)const modelParams = {
// ID of the model, required.
modelId: "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 ...
};$modelParams = new InferenceParameters(
// ID of the model, required.
"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?

