openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
achandmsft-patch-1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/Custom/Files/FileStatus.cs

17lines · modepreview

using System;

namespace OpenAI.Files;

// CUSTOM: Added the Obsolete attribute.
[Obsolete($"This struct is obsolete. If this is a fine-tuning training file, it may take some time to process"
    + $" after it has been uploaded. While the file is processing, you can still create a fine-tuning job but it"
    + $" will not start until the file processing has completed.")]
[CodeGenType("OpenAIFileStatus")]
public enum FileStatus
{
    Uploaded,

    Processed,

    Error,
}