namespace AIStudio.Assistants.BatchProcessing;
///
/// How the results of a batch run are written to disk.
///
public enum BatchProcessingOutputMode
{
///
/// One result file per processed document, written in the chosen file format.
///
///
/// This must stay the first member. Enums are persisted under their name, and an unknown name
/// falls back to the default value of the enum, which is the member with the value zero. That
/// is what lets settings written before this member was renamed still land here.
///
INDIVIDUAL_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,
}