Skip to content

Commit 57d4ffb

Browse files
committed
v4.27.0
1 parent ae32070 commit 57d4ffb

4 files changed

Lines changed: 158 additions & 1 deletion

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.27.0
3+
- `Get-Response`および`Request-Response`にストリーミングやバックグラウンド処理用の新しいパラメータを追加しました
4+
- 配列型クエリパラメータの処理に関する問題を修正しました
5+
26
### 4.26.0
37
- Responses API用の新しい組み込みツール(Remote MCP、Code Interpreter、Image Generationなど)を追加しました
48
- Responseオブジェクトの一覧表示を最適化しました

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
### 4.27.0
3+
- Add new parameters to `Get-Response` and `Request-Response` for streaming and background processing.
4+
- Improve handling of array-type query parameters.
5+
26
### 4.26.0
37
- Add new built-in tools for Responses API, such as Remote MCP, Code Interpreter, and Image Generation.
48
- Optimize list view of Response object.

PSOpenAI-Help.xml

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6644,6 +6644,70 @@ created : 2023/02/28 18:56:42</dev:code>
66446644
</dev:type>
66456645
<dev:defaultValue>None</dev:defaultValue>
66466646
</command:parameter>
6647+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6648+
<maml:name>Include</maml:name>
6649+
<maml:description>
6650+
<maml:para>Specify additional output data to include in the model response.</maml:para>
6651+
</maml:description>
6652+
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
6653+
<dev:type>
6654+
<maml:name>String[]</maml:name>
6655+
<maml:uri />
6656+
</dev:type>
6657+
<dev:defaultValue>None</dev:defaultValue>
6658+
</command:parameter>
6659+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6660+
<maml:name>Stream</maml:name>
6661+
<maml:description>
6662+
<maml:para>If set, the model response data will be streamed to the client.</maml:para>
6663+
</maml:description>
6664+
<dev:type>
6665+
<maml:name>SwitchParameter</maml:name>
6666+
<maml:uri />
6667+
</dev:type>
6668+
<dev:defaultValue>False</dev:defaultValue>
6669+
</command:parameter>
6670+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6671+
<maml:name>StreamOutputType</maml:name>
6672+
<maml:description>
6673+
<maml:para>Specifying the format that the function output. This parameter is only valid for the stream output. This parameter is only valid for the stream output. - `text` : Output only text deltas that the model generated. (Default)
6674+
- `object` : Output all events that the API respond.
6675+
</maml:para>
6676+
</maml:description>
6677+
<command:parameterValueGroup>
6678+
<command:parameterValue required="false" command:variableLength="false">text</command:parameterValue>
6679+
<command:parameterValue required="false" command:variableLength="false">object</command:parameterValue>
6680+
</command:parameterValueGroup>
6681+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
6682+
<dev:type>
6683+
<maml:name>String</maml:name>
6684+
<maml:uri />
6685+
</dev:type>
6686+
<dev:defaultValue>text</dev:defaultValue>
6687+
</command:parameter>
6688+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6689+
<maml:name>StartingAfter</maml:name>
6690+
<maml:description>
6691+
<maml:para>The sequence number of the event after which to start streaming. This parameter is only valid for the stream output.</maml:para>
6692+
</maml:description>
6693+
<command:parameterValue required="true" variableLength="false">Int32</command:parameterValue>
6694+
<dev:type>
6695+
<maml:name>Int32</maml:name>
6696+
<maml:uri />
6697+
</dev:type>
6698+
<dev:defaultValue>None</dev:defaultValue>
6699+
</command:parameter>
6700+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6701+
<maml:name>OutputRawResponse</maml:name>
6702+
<maml:description>
6703+
<maml:para>If specifies this switch, an output of this function to be a raw response value from the API. (Normally JSON formatted string.)</maml:para>
6704+
</maml:description>
6705+
<dev:type>
6706+
<maml:name>SwitchParameter</maml:name>
6707+
<maml:uri />
6708+
</dev:type>
6709+
<dev:defaultValue>False</dev:defaultValue>
6710+
</command:parameter>
66476711
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
66486712
<maml:name>TimeoutSec</maml:name>
66496713
<maml:description>
@@ -6728,6 +6792,68 @@ If not specified, it will try to use `$global:OPENAI_ORGANIZATION` or `$env:OPEN
67286792
</dev:type>
67296793
<dev:defaultValue>None</dev:defaultValue>
67306794
</command:parameter>
6795+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6796+
<maml:name>Include</maml:name>
6797+
<maml:description>
6798+
<maml:para>Specify additional output data to include in the model response.</maml:para>
6799+
</maml:description>
6800+
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
6801+
<dev:type>
6802+
<maml:name>String[]</maml:name>
6803+
<maml:uri />
6804+
</dev:type>
6805+
<dev:defaultValue>None</dev:defaultValue>
6806+
</command:parameter>
6807+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6808+
<maml:name>Stream</maml:name>
6809+
<maml:description>
6810+
<maml:para>If set, the model response data will be streamed to the client.</maml:para>
6811+
</maml:description>
6812+
<command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
6813+
<dev:type>
6814+
<maml:name>SwitchParameter</maml:name>
6815+
<maml:uri />
6816+
</dev:type>
6817+
<dev:defaultValue>False</dev:defaultValue>
6818+
</command:parameter>
6819+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6820+
<maml:name>StreamOutputType</maml:name>
6821+
<maml:description>
6822+
<maml:para>Specifying the format that the function output. This parameter is only valid for the stream output. This parameter is only valid for the stream output. - `text` : Output only text deltas that the model generated. (Default)
6823+
- `object` : Output all events that the API respond.
6824+
</maml:para>
6825+
</maml:description>
6826+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
6827+
<dev:type>
6828+
<maml:name>String</maml:name>
6829+
<maml:uri />
6830+
</dev:type>
6831+
<dev:defaultValue>text</dev:defaultValue>
6832+
</command:parameter>
6833+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6834+
<maml:name>StartingAfter</maml:name>
6835+
<maml:description>
6836+
<maml:para>The sequence number of the event after which to start streaming. This parameter is only valid for the stream output.</maml:para>
6837+
</maml:description>
6838+
<command:parameterValue required="true" variableLength="false">Int32</command:parameterValue>
6839+
<dev:type>
6840+
<maml:name>Int32</maml:name>
6841+
<maml:uri />
6842+
</dev:type>
6843+
<dev:defaultValue>None</dev:defaultValue>
6844+
</command:parameter>
6845+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
6846+
<maml:name>OutputRawResponse</maml:name>
6847+
<maml:description>
6848+
<maml:para>If specifies this switch, an output of this function to be a raw response value from the API. (Normally JSON formatted string.)</maml:para>
6849+
</maml:description>
6850+
<command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
6851+
<dev:type>
6852+
<maml:name>SwitchParameter</maml:name>
6853+
<maml:uri />
6854+
</dev:type>
6855+
<dev:defaultValue>False</dev:defaultValue>
6856+
</command:parameter>
67316857
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
67326858
<maml:name>TimeoutSec</maml:name>
67336859
<maml:description>
@@ -20945,6 +21071,17 @@ Possible values: `browser`, `mac`, `windows`, `ubuntu`.</maml:para>
2094521071
</dev:type>
2094621072
<dev:defaultValue>True</dev:defaultValue>
2094721073
</command:parameter>
21074+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
21075+
<maml:name>Background</maml:name>
21076+
<maml:description>
21077+
<maml:para>Whether to run the model response in the background. The default is `$false`.</maml:para>
21078+
</maml:description>
21079+
<dev:type>
21080+
<maml:name>SwitchParameter</maml:name>
21081+
<maml:uri />
21082+
</dev:type>
21083+
<dev:defaultValue>False</dev:defaultValue>
21084+
</command:parameter>
2094821085
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
2094921086
<maml:name>Stream</maml:name>
2095021087
<maml:description>
@@ -21887,6 +22024,18 @@ Possible values: `browser`, `mac`, `windows`, `ubuntu`.</maml:para>
2188722024
</dev:type>
2188822025
<dev:defaultValue>True</dev:defaultValue>
2188922026
</command:parameter>
22027+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
22028+
<maml:name>Background</maml:name>
22029+
<maml:description>
22030+
<maml:para>Whether to run the model response in the background. The default is `$false`.</maml:para>
22031+
</maml:description>
22032+
<command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
22033+
<dev:type>
22034+
<maml:name>SwitchParameter</maml:name>
22035+
<maml:uri />
22036+
</dev:type>
22037+
<dev:defaultValue>False</dev:defaultValue>
22038+
</command:parameter>
2189022039
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
2189122040
<maml:name>Stream</maml:name>
2189222041
<maml:description>

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.26.0'
3+
ModuleVersion = '4.27.0'
44

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

0 commit comments

Comments
 (0)