mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-18 22:32:11 +00:00
13 lines
250 B
C#
13 lines
250 B
C#
namespace AIStudio.Assistants.BatchProcessing;
|
|
|
|
/// <summary>
|
|
/// Defines the separators available for Batch Processing result tables.
|
|
/// </summary>
|
|
public enum BatchProcessingCsvSeparator
|
|
{
|
|
COMMA,
|
|
SEMICOLON,
|
|
PIPE,
|
|
TAB,
|
|
CUSTOM,
|
|
} |