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