pub trait TextLmRunnerExt<'s, 'req> {
// Required method
fn get_lm_response<Tmpl>(
&'s self,
request: GenericTextLmRequest<'req, Tmpl>,
) -> Result<String, GenericRunnerError<Tmpl::Error>>
where Tmpl: ChatTemplate;
}Required Methods§
fn get_lm_response<Tmpl>(
&'s self,
request: GenericTextLmRequest<'req, Tmpl>,
) -> Result<String, GenericRunnerError<Tmpl::Error>>where
Tmpl: ChatTemplate,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.