needs to be checked if PE model accepts batches (if so - maybe worth claiming use of batches of inputs) _Originally posted by @PawelPeczek-Roboflow in https://github.com/roboflow/inference/pull/1350#discussion_r2138408406_ looks like it does: - https://github.com/roboflow/inference/blob/main/inference/core/entities/requests/perception_encoder.py#L45 Clip also does actually and block decalres input the same way: `data: Union[Selector(kind=[IMAGE_KIND, STRING_KIND]), str]` @PawelPeczek-Roboflow Is this the only thing that would need to be added? ``` @classmethod def get_parameters_accepting_batches(cls) -> List[str]: return ["data"] ``` (above results in `'Batch' object has no attribute 'to_inference_format'`)