openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.1.0-beta.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/Custom/Files/FileStatus.cs

17lines · modecode

1using System;
2
3namespace OpenAI.Files;
4
5// CUSTOM: Added the Obsolete attribute.
6[Obsolete($"This struct is obsolete. If this is a fine-tuning training file, it may take some time to process"
7 + $" after it has been uploaded. While the file is processing, you can still create a fine-tuning job but it"
8 + $" will not start until the file processing has completed.")]
9[CodeGenModel("OpenAIFileStatus")]
10public enum FileStatus
11{
12 Uploaded,
13
14 Processed,
15
16 Error,
17}