We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28a0b0c commit 72d2926Copy full SHA for 72d2926
1 file changed
Public/Responses/Request-Response.ps1
@@ -392,6 +392,9 @@ function Request-Response {
392
[Parameter()]
393
[switch]$Background = $false,
394
395
+ # [Parameter(DontShow)]
396
+ # [System.Collections.IDictionary[]]$ContextManagement,
397
+
398
#region Stream
399
400
[switch]$Stream = $false,
@@ -629,6 +632,11 @@ function Request-Response {
629
632
$PostBody.stream = [bool]$Stream
630
633
}
631
634
635
+ # Context Management
636
+ # if ($ContextManagement.Count -gt 0) {
637
+ # $PostBody.context_management = $ContextManagement
638
+ # }
639
640
# Reasoning
641
$ReasoningOptions = @{}
642
if ($PSBoundParameters.ContainsKey('ReasoningEffort')) {
0 commit comments