Check if a list column of predictors contains any of the specified values.
Examples
if (FALSE) { # \dontrun{
list_datasets(full = TRUE) |>
filter(has_predictor(predictors, "alphafold3"))
# Check for multiple predictors (any of)
list_datasets(full = TRUE) |>
filter(has_predictor(predictors, c("alphafold3", "boltz2")))
} # }