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 · modeblame

2ab1a942Jose Arriaga Maldonado1 years ago1using System;
2
58f93c8dShivangiReja2 years ago3namespace OpenAI.Files;
9f9f2936Jose Arriaga Maldonado2 years ago4
2ab1a942Jose Arriaga Maldonado1 years ago5// 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 ago9[CodeGenType("OpenAIFileStatus")]
a330c2e7Jose Arriaga Maldonado1 years ago10public enum FileStatus
9f9f2936Jose Arriaga Maldonado2 years ago11{
a330c2e7Jose Arriaga Maldonado1 years ago12Uploaded,
13
14Processed,
15
16Error,
9f9f2936Jose Arriaga Maldonado2 years ago17}