openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/customize-openairesponsescontext-attribute

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

OpenAI.Responses/src/Custom/Items/ImageGenerationTool/ImageGenerationCallStatus.cs

15lines · modecode

1using Microsoft.TypeSpec.Generator.Customizations;
2using System.Diagnostics.CodeAnalysis;
3
4namespace OpenAI.Responses;
5
6// CUSTOM: Renamed.
7[Experimental("OPENAI001")]
8[CodeGenType("ImageGenToolCallItemResourceStatus")]
9public enum ImageGenerationCallStatus
10{
11 InProgress,
12 Completed,
13 Generating,
14 Failed
15}
16