Hi, I am trying to configure multiple GLiNERRecognizer instances using Presidio's YAML-based setup (no-code). Is it currently possible to specify more than one GLiNER recognizer with different models or parameters directly in YAML?
something like:
recognizers:
- name: GLiNERRecognizer
type: predefined
model_name: "urchade/gliner_multi_pii-v1"
threshold: 0.4
...
- name: GLiNERRecognizer
type: predefined
model_name: "gliner-community/gliner_small-v2.5"
threshold: 0.25
...