mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 18:32:12 +00:00
11 lines
247 B
C#
11 lines
247 B
C#
|
|
namespace AIStudio.Assistants.BatchProcessing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The source of the instructions used to process each document of a batch run.
|
||
|
|
/// </summary>
|
||
|
|
public enum BatchProcessingPromptSource
|
||
|
|
{
|
||
|
|
FREE_PROMPT,
|
||
|
|
POLICY,
|
||
|
|
FILE_IMPORT,
|
||
|
|
}
|