openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
OpenAI.Responses/src/Custom/Items/ImageGenerationTool/ImageGenerationCallStatus.cs
15lines · modecode
| 1 | using Microsoft.TypeSpec.Generator.Customizations; |
| 2 | using System.Diagnostics.CodeAnalysis; |
| 3 | |
| 4 | namespace OpenAI.Responses; |
| 5 | |
| 6 | // CUSTOM: Renamed. |
| 7 | [Experimental("OPENAI001")] |
| 8 | [CodeGenType("ImageGenToolCallItemResourceStatus")] |
| 9 | public enum ImageGenerationCallStatus |
| 10 | { |
| 11 | InProgress, |
| 12 | Completed, |
| 13 | Generating, |
| 14 | Failed |
| 15 | } |
| 16 | |