pub trait VisionLmRunnerExt<'s, 'req, Tmpl>where
Tmpl: ChatTemplate,{
// Required method
fn get_vlm_response(
&'s self,
request: GenericVisionLmRequest<'req, Tmpl>,
) -> Result<String, GenericRunnerError<Tmpl::Error>>;
}