You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Custom/Responses/CreateResponseOptions.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ public CreateResponseOptions(IEnumerable<ResponseItem> inputItems, string model)
24
24
/// Gets or sets whether to run the response in background mode. This corresponds to the "background" property in the JSON representation.
25
25
/// </summary>
26
26
[CodeGenMember("Background")]
27
-
publicbool?IsBackgroundModeEnabled{get;set;}
27
+
publicbool?BackgroundModeEnabled{get;set;}
28
28
29
29
/// <summary>
30
30
/// Gets or sets how tool calls should be selected during response generation. This corresponds to the "tool_choice" property in the JSON representation.
@@ -48,19 +48,19 @@ public CreateResponseOptions(IEnumerable<ResponseItem> inputItems, string model)
48
48
/// Gets or sets whether multiple tool calls can be made in parallel. This corresponds to the "parallel_tool_calls" property in the JSON representation.
49
49
/// </summary>
50
50
[CodeGenMember("ParallelToolCalls")]
51
-
publicbool?IsParallelToolCallsEnabled{get;set;}
51
+
publicbool?ParallelToolCallsEnabled{get;set;}
52
52
53
53
/// <summary>
54
54
/// Gets or sets whether the response should be stored for later retrieval. This corresponds to the "store" property in the JSON representation.
55
55
/// </summary>
56
56
[CodeGenMember("Store")]
57
-
publicbool?IsStoredOutputEnabled{get;set;}
57
+
publicbool?StoredOutputEnabled{get;set;}
58
58
59
59
/// <summary>
60
60
/// Gets or sets whether the response should be streamed. This corresponds to the "stream" property in the JSON representation.
61
61
/// </summary>
62
62
[CodeGenMember("Stream")]
63
-
publicbool?IsStreamingEnabled{get;set;}
63
+
publicbool?StreamingEnabled{get;set;}
64
64
65
65
/// <summary>
66
66
/// Gets or sets the maximum number of output tokens to generate. This corresponds to the "max_output_tokens" property in the JSON representation.
/// Gets or sets whether to include obfuscation data in the response. This corresponds to the "include_obfuscation" property in the JSON representation.
0 commit comments