pub trait ReconcileUnprocessed<E> {
// Required method
fn reconcile_unprocessed<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 mut self,
client: &'life1 dyn LanguageModelClientInterface<E>,
expected_content_type: &'life2 ExpectedContentType,
process_output_file_fn: &'life3 BatchWorkflowProcessOutputFileFn,
process_error_file_fn: &'life4 BatchWorkflowProcessErrorFileFn,
) -> Pin<Box<dyn Future<Output = Result<(), E>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait;
}Expand description
Trait describing how a BatchFileTriple can be reconciled if unprocessed.