@@ -4991,7 +4991,7 @@ public enum MessageStatus {
49914991 }
49924992 [ Experimental ( "OPENAI001" ) ]
49934993 public class OpenAIResponse : IJsonModel < OpenAIResponse > , IPersistableModel < OpenAIResponse > {
4994- public bool ? Background { get ; }
4994+ public bool ? BackgroundModeEnabled { get ; }
49954995 public DateTimeOffset CreatedAt { get ; }
49964996 public string EndUserId { get ; }
49974997 public ResponseError Error { get ; }
@@ -5069,7 +5069,7 @@ public class OpenAIResponseClient {
50695069 [ Experimental ( "OPENAI001" ) ]
50705070 public static class OpenAIResponsesModelFactory {
50715071 public static MessageResponseItem MessageResponseItem ( string id = null , MessageRole role = MessageRole . Assistant , MessageStatus ? status = null ) ;
5072- public static OpenAIResponse OpenAIResponse ( string id = null , DateTimeOffset createdAt = default , ResponseStatus ? status = null , ResponseError error = null , ResponseTokenUsage usage = null , string endUserId = null , ResponseReasoningOptions reasoningOptions = null , int ? maxOutputTokenCount = null , ResponseTextOptions textOptions = null , ResponseTruncationMode ? truncationMode = null , ResponseIncompleteStatusDetails incompleteStatusDetails = null , IEnumerable < ResponseItem > outputItems = null , bool parallelToolCallsEnabled = false , ResponseToolChoice toolChoice = null , string model = null , IDictionary < string , string > metadata = null , float ? temperature = null , float ? topP = null , ResponseServiceTier ? serviceTier = null , string previousResponseId = null , bool ? background = null , string instructions = null , IEnumerable < ResponseTool > tools = null ) ;
5072+ public static OpenAIResponse OpenAIResponse ( string id = null , DateTimeOffset createdAt = default , ResponseStatus ? status = null , ResponseError error = null , ResponseTokenUsage usage = null , string endUserId = null , ResponseReasoningOptions reasoningOptions = null , int ? maxOutputTokenCount = null , ResponseTextOptions textOptions = null , ResponseTruncationMode ? truncationMode = null , ResponseIncompleteStatusDetails incompleteStatusDetails = null , IEnumerable < ResponseItem > outputItems = null , bool parallelToolCallsEnabled = false , ResponseToolChoice toolChoice = null , string model = null , IDictionary < string , string > metadata = null , float ? temperature = null , float ? topP = null , ResponseServiceTier ? serviceTier = null , string previousResponseId = null , bool ? backgroundModeEnabled = null , string instructions = null , IEnumerable < ResponseTool > tools = null ) ;
50735073 public static ReasoningResponseItem ReasoningResponseItem ( string id = null , string encryptedContent = null , ReasoningStatus ? status = null , IEnumerable < ReasoningSummaryPart > summaryParts = null ) ;
50745074 public static ReasoningResponseItem ReasoningResponseItem ( string id = null , string encryptedContent = null , ReasoningStatus ? status = null , string summaryText = null ) ;
50755075 public static ReferenceResponseItem ReferenceResponseItem ( string id = null ) ;
@@ -5154,7 +5154,7 @@ public enum ResponseContentPartKind {
51545154 }
51555155 [ Experimental ( "OPENAI001" ) ]
51565156 public class ResponseCreationOptions : IJsonModel < ResponseCreationOptions > , IPersistableModel < ResponseCreationOptions > {
5157- public bool ? Background { get ; set ; }
5157+ public bool ? BackgroundModeEnabled { get ; set ; }
51585158 public string EndUserId { get ; set ; }
51595159 public string Instructions { get ; set ; }
51605160 public int ? MaxOutputTokenCount { get ; set ; }
0 commit comments