Skip to content

Commit 2f768b1

Browse files
committed
v4.30.0
1 parent 7d666da commit 2f768b1

3 files changed

Lines changed: 36 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
### 4.30.0
3+
- Add `o3-deep-research` and `o4-mini-deep-research`.
4+
- Improve handling of file inputs in `Request-Response`. You can now specify a URL of a file.
5+
- Update model deprecation list.
6+
- Don't send Content-Type header on GET requests.
7+
- Fix documentation for `Request-Response` function. [#43](https://github.com/mkht/PSOpenAI/issues/43)
8+
- Fix User-Agent header handling.
9+
210
### 4.29.1
311
- Fix file upload failures due to incorrectly set content headers. [#42](https://github.com/mkht/PSOpenAI/issues/42)
412

PSOpenAI-Help.xml

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2042,7 +2042,7 @@ If not specified, it will try to use `$global:OPENAI_API_KEY` or `$env:OPENAI_AP
20422042
<command:examples>
20432043
<command:example>
20442044
<maml:title>-------------------------- Example 1 --------------------------</maml:title>
2045-
<dev:code>PS C:\&gt; Connect-RealtimeSession -Model 'gpt-4o-realtime-preview-2024-10-01'</dev:code>
2045+
<dev:code>PS C:\&gt; Connect-RealtimeSession -Model 'gpt-4o-realtime-preview'</dev:code>
20462046
<dev:remarks>
20472047
<maml:para></maml:para>
20482048
</dev:remarks>
@@ -20571,7 +20571,7 @@ Instructions that the model should follow.</maml:para>
2057120571
<maml:name>Files</maml:name>
2057220572
<maml:description>
2057320573
<maml:para>A file input to the model.
20574-
You can speciy a list of the local file path or the ID of the file to be uploaded.</maml:para>
20574+
You can speciy a list of the local file path, the URL of the file or the ID of the file to be uploaded.</maml:para>
2057520575
</maml:description>
2057620576
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
2057720577
<dev:type>
@@ -20846,6 +20846,18 @@ Possible values: `browser`, `mac`, `windows`, `ubuntu`.</maml:para>
2084620846
</dev:type>
2084720847
<dev:defaultValue>None</dev:defaultValue>
2084820848
</command:parameter>
20849+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
20850+
<maml:name>RemoteMCPServerDescription</maml:name>
20851+
<maml:description>
20852+
<maml:para>Optional description of the MCP server, used to provide more context.</maml:para>
20853+
</maml:description>
20854+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
20855+
<dev:type>
20856+
<maml:name>String</maml:name>
20857+
<maml:uri />
20858+
</dev:type>
20859+
<dev:defaultValue>None</dev:defaultValue>
20860+
</command:parameter>
2084920861
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
2085020862
<maml:name>RemoteMCPAllowedTools</maml:name>
2085120863
<maml:description>
@@ -21558,7 +21570,7 @@ Instructions that the model should follow.</maml:para>
2155821570
<maml:name>Files</maml:name>
2155921571
<maml:description>
2156021572
<maml:para>A file input to the model.
21561-
You can speciy a list of the local file path or the ID of the file to be uploaded.</maml:para>
21573+
You can speciy a list of the local file path, the URL of the file or the ID of the file to be uploaded.</maml:para>
2156221574
</maml:description>
2156321575
<command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
2156421576
<dev:type>
@@ -21832,6 +21844,18 @@ Possible values: `browser`, `mac`, `windows`, `ubuntu`.</maml:para>
2183221844
</dev:type>
2183321845
<dev:defaultValue>None</dev:defaultValue>
2183421846
</command:parameter>
21847+
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
21848+
<maml:name>RemoteMCPServerDescription</maml:name>
21849+
<maml:description>
21850+
<maml:para>Optional description of the MCP server, used to provide more context.</maml:para>
21851+
</maml:description>
21852+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
21853+
<dev:type>
21854+
<maml:name>String</maml:name>
21855+
<maml:uri />
21856+
</dev:type>
21857+
<dev:defaultValue>None</dev:defaultValue>
21858+
</command:parameter>
2183521859
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
2183621860
<maml:name>RemoteMCPAllowedTools</maml:name>
2183721861
<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.29.1'
3+
ModuleVersion = '4.30.0'
44

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

0 commit comments

Comments
 (0)