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
/// Gets the sampling temperature that was used, between 0 and 2. This corresponds to the "temperature" property in the JSON representation.
77
77
/// </summary>
78
-
publicfloat?Temperature{get;}
78
+
publicfloat?Temperature{get;set;}
79
79
80
80
/// <summary>
81
81
/// Gets the nucleus sampling parameter that was used, between 0 and 1. This corresponds to the "top_p" property in the JSON representation.
82
82
/// </summary>
83
-
publicfloat?TopP{get;}
83
+
publicfloat?TopP{get;set;}
84
84
85
85
/// <summary>
86
86
/// Gets the unique identifier representing the end-user. This corresponds to the "user" property in the JSON representation.
87
87
/// </summary>
88
-
publicstringEndUserId{get;}
88
+
publicstringEndUserId{get;set;}
89
89
90
90
/// <summary>
91
91
/// Gets the service tier that was used for processing the request. This corresponds to the "service_tier" property in the JSON representation.
92
92
/// </summary>
93
-
publicResponseServiceTier?ServiceTier{get;}
93
+
publicResponseServiceTier?ServiceTier{get;set;}
94
94
95
95
/// <summary>
96
96
/// Gets the ID of the previous response that was continued from, if applicable. This corresponds to the "previous_response_id" property in the JSON representation.
97
97
/// </summary>
98
-
publicstringPreviousResponseId{get;}
98
+
publicstringPreviousResponseId{get;set;}
99
99
100
100
/// <summary>
101
101
/// Gets the internal model identifier that was used for generating the response.
102
102
/// </summary>
103
-
internalModelIdsResponses?InternalModel{get;}
103
+
internalModelIdsResponses?InternalModel{get;set;}
104
104
105
105
/// <summary>
106
106
/// Gets the model name that was used for generating the response. This corresponds to the "model" property in the JSON representation.
@@ -110,92 +110,93 @@ internal ResponseResult(IDictionary<string, string> metadata, float? temperature
110
110
/// <summary>
111
111
/// Gets the reasoning options that were used for the response. This corresponds to the "reasoning" property in the JSON representation.
0 commit comments