openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Files/FilePurpose.cs
27lines · modecode
| 1 | using System.Diagnostics.CodeAnalysis; |
| 2 | |
| 3 | namespace OpenAI.Files; |
| 4 | |
| 5 | [CodeGenType("OpenAIFilePurpose")] |
| 6 | public enum FilePurpose |
| 7 | { |
| 8 | Assistants, |
| 9 | |
| 10 | AssistantsOutput, |
| 11 | |
| 12 | Batch, |
| 13 | |
| 14 | BatchOutput, |
| 15 | |
| 16 | FineTune, |
| 17 | |
| 18 | FineTuneResults, |
| 19 | |
| 20 | Vision, |
| 21 | |
| 22 | [Experimental("OPENAI001")] |
| 23 | UserData, |
| 24 | |
| 25 | [Experimental("OPENAI001")] |
| 26 | Evaluations, |
| 27 | } |