Skip to content

Commit

Permalink
v4.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkht committed Oct 2, 2024
1 parent f054788 commit 195ffd1
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.ja.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# 変更履歴
### 4.7.0
- `Request-ChatCompletion``-Store``-MetaData`パラメータを追加します
これを使用するとチャット応答を保存し、モデル蒸留や評価といった
OpenAI DevDay 2024で発表された機能に利用できます

### 4.6.0
- `Request-Moderation``-Images`パラメータを追加します

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
### 4.7.0
- Add `-Store` & `-MetaData` params for `Request-ChatCompletion`.
For support Stored Completions that was annouced at OpenAI DevDay 2024.

### 4.6.0
- Add `-Images` parameter for `Request-Moderation`.

Expand Down
47 changes: 47 additions & 0 deletions PSOpenAI-Help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11570,6 +11570,29 @@ The default value is `1`.</maml:para>
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
<maml:name>Store</maml:name>
<maml:description>
<maml:para>Whether or not to store the output of this chat completion request for use in model distillation or evals.</maml:para>
</maml:description>
<dev:type>
<maml:name>SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
<maml:name>MetaData</maml:name>
<maml:description>
<maml:para>Developer-defined tags and values used for filtering completions in the dashboard.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">IDictionary</command:parameterValue>
<dev:type>
<maml:name>IDictionary</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
</command:parameter>
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="stop">
<maml:name>StopSequence</maml:name>
<maml:description>
Expand Down Expand Up @@ -12039,6 +12062,30 @@ The default value is `1`.</maml:para>
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
<maml:name>Store</maml:name>
<maml:description>
<maml:para>Whether or not to store the output of this chat completion request for use in model distillation or evals.</maml:para>
</maml:description>
<command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
<maml:name>MetaData</maml:name>
<maml:description>
<maml:para>Developer-defined tags and values used for filtering completions in the dashboard.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">IDictionary</command:parameterValue>
<dev:type>
<maml:name>IDictionary</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
</command:parameter>
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="stop">
<maml:name>StopSequence</maml:name>
<maml:description>
Expand Down
2 changes: 1 addition & 1 deletion PSOpenAI.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
# Version number of this module.
ModuleVersion = '4.6.0'
ModuleVersion = '4.7.0'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down

0 comments on commit 195ffd1

Please sign in to comment.