namespace AIStudio.Assistants.BatchProcessing;
///
/// How the results of a batch run are written to disk.
///
public enum BatchProcessingOutputMode
{
///
/// One Markdown result file per processed document.
///
MARKDOWN_FILES,
///
/// A CSV results table, where each AI answer becomes one row. The content of
/// the result column is defined by the instructions of the batch run.
///
TABLE_ONLY,
}