openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Files/FileStatus.cs
17lines · modeblame
2ab1a942Jose Arriaga Maldonado1 years ago | 1 | using System; |
| 2 | | |
58f93c8dShivangiReja2 years ago | 3 | namespace OpenAI.Files; |
9f9f2936Jose Arriaga Maldonado2 years ago | 4 | |
2ab1a942Jose Arriaga Maldonado1 years ago | 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.")] | |
0ca4c062Jose Arriaga Maldonado1 years ago | 9 | [CodeGenType("OpenAIFileStatus")] |
a330c2e7Jose Arriaga Maldonado1 years ago | 10 | public enum FileStatus |
9f9f2936Jose Arriaga Maldonado2 years ago | 11 | { |
a330c2e7Jose Arriaga Maldonado1 years ago | 12 | Uploaded, |
| 13 | | |
| 14 | Processed, | |
| 15 | | |
| 16 | Error, | |
9f9f2936Jose Arriaga Maldonado2 years ago | 17 | } |