mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-15 11:02:11 +00:00
9 lines
389 B
C#
9 lines
389 B
C#
|
|
namespace AIStudio.Assistants.BatchProcessing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// One row of the log of a previous batch run.
|
||
|
|
/// </summary>
|
||
|
|
public sealed record BatchProcessingLogEntry(string RelativePath, string Time, string Model, string Status, string Details)
|
||
|
|
{
|
||
|
|
public bool WasSuccessful => string.Equals(this.Status, nameof(BatchProcessingFileStatus.DONE), StringComparison.OrdinalIgnoreCase);
|
||
|
|
}
|