File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1970,6 +1970,7 @@ public class ChatOutputTokenUsageDetails : IJsonModel<ChatOutputTokenUsageDetail
19701970 public static ChatReasoningEffortLevel High { get ; }
19711971 public static ChatReasoningEffortLevel Low { get ; }
19721972 public static ChatReasoningEffortLevel Medium { get ; }
1973+ public static ChatReasoningEffortLevel Minimal { get ; }
19731974 public readonly bool Equals ( ChatReasoningEffortLevel other ) ;
19741975 [ EditorBrowsable ( EditorBrowsableState . Never ) ]
19751976 public override readonly bool Equals ( object obj ) ;
@@ -5641,6 +5642,7 @@ public class ResponseOutputTokenUsageDetails : IJsonModel<ResponseOutputTokenUsa
56415642 public static ResponseReasoningEffortLevel High { get ; }
56425643 public static ResponseReasoningEffortLevel Low { get ; }
56435644 public static ResponseReasoningEffortLevel Medium { get ; }
5645+ public static ResponseReasoningEffortLevel Minimal { get ; }
56445646 public readonly bool Equals ( ResponseReasoningEffortLevel other ) ;
56455647 [ EditorBrowsable ( EditorBrowsableState . Never ) ]
56465648 public override readonly bool Equals ( object obj ) ;
Original file line number Diff line number Diff line change @@ -1724,6 +1724,7 @@ public class ChatOutputTokenUsageDetails : IJsonModel<ChatOutputTokenUsageDetail
17241724 public static ChatReasoningEffortLevel High { get ; }
17251725 public static ChatReasoningEffortLevel Low { get ; }
17261726 public static ChatReasoningEffortLevel Medium { get ; }
1727+ public static ChatReasoningEffortLevel Minimal { get ; }
17271728 public readonly bool Equals ( ChatReasoningEffortLevel other ) ;
17281729 [ EditorBrowsable ( EditorBrowsableState . Never ) ]
17291730 public override readonly bool Equals ( object obj ) ;
@@ -4988,6 +4989,7 @@ public class ResponseOutputTokenUsageDetails : IJsonModel<ResponseOutputTokenUsa
49884989 public static ResponseReasoningEffortLevel High { get ; }
49894990 public static ResponseReasoningEffortLevel Low { get ; }
49904991 public static ResponseReasoningEffortLevel Medium { get ; }
4992+ public static ResponseReasoningEffortLevel Minimal { get ; }
49914993 public readonly bool Equals ( ResponseReasoningEffortLevel other ) ;
49924994 [ EditorBrowsable ( EditorBrowsableState . Never ) ]
49934995 public override readonly bool Equals ( object obj ) ;
Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ function Invoke-GenAPI {
215215 if ($systemDiagnosticsDiagnosticSourceRef ) { $genapiArgs += @ (" --assembly-reference" , $systemDiagnosticsDiagnosticSourceRef ) }
216216 if ($microsoftBclAsyncInterfacesRef ) { $genapiArgs += @ (" --assembly-reference" , $microsoftBclAsyncInterfacesRef ) }
217217
218- & genapi @genapiArgs
218+ & dotnet " D:\C#\sdk\artifacts\bin\Microsoft.DotNet.GenAPI.Tool\Release\net8.0\Microsoft.DotNet.GenAPI.Tool.dll " @genapiArgs
219219
220220 Write-Output " Cleaning up $ ( $Destination ) ..."
221221 Write-Output " "
You can’t perform that action at this time.
0 commit comments