mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 22:12:11 +00:00
18 lines
499 B
C#
18 lines
499 B
C#
|
|
namespace AIStudio.Assistants.BatchProcessing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// How the results of a batch run are written to disk.
|
||
|
|
/// </summary>
|
||
|
|
public enum BatchProcessingOutputMode
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// One Markdown result file per processed document.
|
||
|
|
/// </summary>
|
||
|
|
MARKDOWN_FILES,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 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.
|
||
|
|
/// </summary>
|
||
|
|
TABLE_ONLY,
|
||
|
|
}
|