openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Files/FileStatus.cs
17lines · modecode
| 1 | using System; |
| 2 | |
| 3 | namespace 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")] |
| 10 | public enum FileStatus |
| 11 | { |
| 12 | Uploaded, |
| 13 | |
| 14 | Processed, |
| 15 | |
| 16 | Error, |
| 17 | } |