Skip to content

Commit 9616cf3

Browse files
committed
v4.28.0
1 parent abcec65 commit 9616cf3

5 files changed

Lines changed: 179 additions & 2 deletions

File tree

CHANGELOG.ja.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# 変更履歴
2+
### 4.28.0
3+
- `Set-RealtimeSessionConfiguration``-Speed` および `-Tracing` パラメータを追加しました。
4+
- `Set-RealtimeSessionConfiguration``-TurnDetectionSilenceDuration` パラメータが正しく動作しない問題を修正しました
5+
26
### 4.27.0
37
- `Get-Response`および`Request-Response`にストリーミングやバックグラウンド処理用の新しいパラメータを追加しました
48
- 配列型クエリパラメータの処理に関する問題を修正しました

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
### 4.28.0
3+
- Add Speed and Tracing parameters to `Set-RealtimeSessionConfiguration`.
4+
- Fix issue that the `-TurnDetectionSilenceDuration` parameter of `Set-RealtimeSessionConfiguration` does not work properly.
5+
26
### 4.27.0
37
- Add new parameters to `Get-Response` and `Request-Response` for streaming and background processing.
48
- Improve handling of array-type query parameters.

Docs/Set-RealtimeSessionConfiguration.md

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Set-RealtimeSessionConfiguration
1818
[-Instructions <String>]
1919
[-Modalities <String[]>]
2020
[-Voice <String>]
21+
[-Speed <Double>]
2122
[-InputAudioFormat <String>]
2223
[-OutputAudioFormat <String>]
2324
[-InputAudioNoiseReductionType <String>]
@@ -36,7 +37,10 @@ Set-RealtimeSessionConfiguration
3637
[-Tools <IDictionary[]>]
3738
[-ToolChoice <String>]
3839
[-Temperature <Single>]
39-
[-MaxResponseOutputTokens <Int32>]
40+
[-Tracing <String>]
41+
[-TracingGroupId <String>]
42+
[-TracingMetadata <IDictionary>]
43+
[-TracingWorkflowName <String>]
4044
```
4145

4246
## DESCRIPTION
@@ -270,6 +274,51 @@ Required: False
270274
Position: Named
271275
```
272276

277+
### -Speed
278+
The speed of the model's spoken response. 1.0 is the default speed. 0.25 is the minimum speed. 1.5 is the maximum speed.
279+
280+
```yaml
281+
Type: Double
282+
Required: False
283+
Position: Named
284+
```
285+
286+
### -Tracing
287+
Configuration options for tracing. Set to null to disable tracing. Once tracing is enabled for a session, the configuration cannot be modified. `auto` will create a trace for the session with default settings.
288+
289+
```yaml
290+
Type: String
291+
Required: False
292+
Position: Named
293+
```
294+
295+
### -TracingGroupId
296+
The group id to attach to this trace to enable filtering and grouping in the traces dashboard.
297+
298+
```yaml
299+
Type: String
300+
Required: False
301+
Position: Named
302+
```
303+
304+
### -TracingMetadata
305+
The arbitrary metadata to attach to this trace to enable filtering in the traces dashboard.
306+
307+
```yaml
308+
Type: IDictionary
309+
Required: False
310+
Position: Named
311+
```
312+
313+
### -TracingWorkflowName
314+
The name of the workflow to attach to this trace. This is used to name the trace in the traces dashboard.
315+
316+
```yaml
317+
Type: String
318+
Required: False
319+
Position: Named
320+
```
321+
273322
## INPUTS
274323

275324
## OUTPUTS

PSOpenAI-Help.xml

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24551,6 +24551,66 @@ PS C:\&gt; Request-ChatCompletion -Message 'Hello Azure OpenAI'</dev:code>
2455124551
</dev:type>
2455224552
<dev:defaultValue>None</dev:defaultValue>
2455324553
</command:parameter>
24554+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24555+
<maml:name>Speed</maml:name>
24556+
<maml:description>
24557+
<maml:para>The speed of the model's spoken response. 1.0 is the default speed. 0.25 is the minimum speed. 1.5 is the maximum speed.</maml:para>
24558+
</maml:description>
24559+
<command:parameterValue required="true" variableLength="false">Double</command:parameterValue>
24560+
<dev:type>
24561+
<maml:name>Double</maml:name>
24562+
<maml:uri />
24563+
</dev:type>
24564+
<dev:defaultValue>None</dev:defaultValue>
24565+
</command:parameter>
24566+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24567+
<maml:name>Tracing</maml:name>
24568+
<maml:description>
24569+
<maml:para>Configuration options for tracing. Set to null to disable tracing. Once tracing is enabled for a session, the configuration cannot be modified. `auto` will create a trace for the session with default settings.</maml:para>
24570+
</maml:description>
24571+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
24572+
<dev:type>
24573+
<maml:name>String</maml:name>
24574+
<maml:uri />
24575+
</dev:type>
24576+
<dev:defaultValue>None</dev:defaultValue>
24577+
</command:parameter>
24578+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24579+
<maml:name>TracingGroupId</maml:name>
24580+
<maml:description>
24581+
<maml:para>The group id to attach to this trace to enable filtering and grouping in the traces dashboard.</maml:para>
24582+
</maml:description>
24583+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
24584+
<dev:type>
24585+
<maml:name>String</maml:name>
24586+
<maml:uri />
24587+
</dev:type>
24588+
<dev:defaultValue>None</dev:defaultValue>
24589+
</command:parameter>
24590+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24591+
<maml:name>TracingMetadata</maml:name>
24592+
<maml:description>
24593+
<maml:para>The arbitrary metadata to attach to this trace to enable filtering in the traces dashboard.</maml:para>
24594+
</maml:description>
24595+
<command:parameterValue required="true" variableLength="false">IDictionary</command:parameterValue>
24596+
<dev:type>
24597+
<maml:name>IDictionary</maml:name>
24598+
<maml:uri />
24599+
</dev:type>
24600+
<dev:defaultValue>None</dev:defaultValue>
24601+
</command:parameter>
24602+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24603+
<maml:name>TracingWorkflowName</maml:name>
24604+
<maml:description>
24605+
<maml:para>The name of the workflow to attach to this trace. This is used to name the trace in the traces dashboard.</maml:para>
24606+
</maml:description>
24607+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
24608+
<dev:type>
24609+
<maml:name>String</maml:name>
24610+
<maml:uri />
24611+
</dev:type>
24612+
<dev:defaultValue>None</dev:defaultValue>
24613+
</command:parameter>
2455424614
</command:syntaxItem>
2455524615
</command:syntax>
2455624616
<command:parameters>
@@ -24830,6 +24890,66 @@ PS C:\&gt; Request-ChatCompletion -Message 'Hello Azure OpenAI'</dev:code>
2483024890
</dev:type>
2483124891
<dev:defaultValue>None</dev:defaultValue>
2483224892
</command:parameter>
24893+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24894+
<maml:name>Speed</maml:name>
24895+
<maml:description>
24896+
<maml:para>The speed of the model's spoken response. 1.0 is the default speed. 0.25 is the minimum speed. 1.5 is the maximum speed.</maml:para>
24897+
</maml:description>
24898+
<command:parameterValue required="true" variableLength="false">Double</command:parameterValue>
24899+
<dev:type>
24900+
<maml:name>Double</maml:name>
24901+
<maml:uri />
24902+
</dev:type>
24903+
<dev:defaultValue>None</dev:defaultValue>
24904+
</command:parameter>
24905+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24906+
<maml:name>Tracing</maml:name>
24907+
<maml:description>
24908+
<maml:para>Configuration options for tracing. Set to null to disable tracing. Once tracing is enabled for a session, the configuration cannot be modified. `auto` will create a trace for the session with default settings.</maml:para>
24909+
</maml:description>
24910+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
24911+
<dev:type>
24912+
<maml:name>String</maml:name>
24913+
<maml:uri />
24914+
</dev:type>
24915+
<dev:defaultValue>None</dev:defaultValue>
24916+
</command:parameter>
24917+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24918+
<maml:name>TracingGroupId</maml:name>
24919+
<maml:description>
24920+
<maml:para>The group id to attach to this trace to enable filtering and grouping in the traces dashboard.</maml:para>
24921+
</maml:description>
24922+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
24923+
<dev:type>
24924+
<maml:name>String</maml:name>
24925+
<maml:uri />
24926+
</dev:type>
24927+
<dev:defaultValue>None</dev:defaultValue>
24928+
</command:parameter>
24929+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24930+
<maml:name>TracingMetadata</maml:name>
24931+
<maml:description>
24932+
<maml:para>The arbitrary metadata to attach to this trace to enable filtering in the traces dashboard.</maml:para>
24933+
</maml:description>
24934+
<command:parameterValue required="true" variableLength="false">IDictionary</command:parameterValue>
24935+
<dev:type>
24936+
<maml:name>IDictionary</maml:name>
24937+
<maml:uri />
24938+
</dev:type>
24939+
<dev:defaultValue>None</dev:defaultValue>
24940+
</command:parameter>
24941+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
24942+
<maml:name>TracingWorkflowName</maml:name>
24943+
<maml:description>
24944+
<maml:para>The name of the workflow to attach to this trace. This is used to name the trace in the traces dashboard.</maml:para>
24945+
</maml:description>
24946+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
24947+
<dev:type>
24948+
<maml:name>String</maml:name>
24949+
<maml:uri />
24950+
</dev:type>
24951+
<dev:defaultValue>None</dev:defaultValue>
24952+
</command:parameter>
2483324953
</command:parameters>
2483424954
<command:inputTypes />
2483524955
<command:returnValues />

PSOpenAI.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
# Version number of this module.
3-
ModuleVersion = '4.27.0'
3+
ModuleVersion = '4.28.0'
44

55
# Supported PSEditions
66
CompatiblePSEditions = 'Core', 'Desktop'

0 commit comments

Comments
 (0)