namespace AIStudio.Assistants.BatchProcessing;
///
/// What should happen when a previous batch run was found in the output folder.
///
public enum BatchProcessingResumeDecision
{
///
/// Process only the documents which are missing in the log or which failed
/// during the previous run.
///
CONTINUE,
///
/// Process all documents again and replace the previous log.
///
RESTART,
}