Skip to content

Commit

Permalink
v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkht committed Dec 27, 2023
1 parent 710b353 commit b86bed4
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.ja.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# 変更履歴
### 2.5.0
- `Start-ThreadRun`に新しいパラメータ`-AdditonalInstructions`を追加しました

### 2.4.0
- `Request-ChatCompletion`に新しいパラメータ`-LogProbs``-TopLogProbs`を追加しました
- `Request-AzureChatCompletion`に新しいパラメータ`-Images``-ImageDetail`を追加しました
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changelog
### Not released yet
### 2.5.0
- Add `-AdditonalInstructions` parameter to `Start-ThreadRun`.

### 2.4.0
Expand Down
28 changes: 26 additions & 2 deletions PSOpenAI-Help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15460,7 +15460,19 @@ If not specified, it will try to use `$global:OPENAI_ORGANIZATION` or `$env:OPEN
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
<maml:name>Instructions</maml:name>
<maml:description>
<maml:para>Override the default system message of the assistant.</maml:para>
<maml:para>Overrides the instructions of the assistant. This is useful for modifying the behavior on a per-run basis.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
<dev:type>
<maml:name>String</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="additional_instructions">
<maml:name>AdditonalInstructions</maml:name>
<maml:description>
<maml:para>Appends additional instructions at the end of the instructions for the run. This is useful for modifying the behavior on a per-run basis without overriding other instructions.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
<dev:type>
Expand Down Expand Up @@ -15628,7 +15640,19 @@ If not specified, it will try to use `$global:OPENAI_ORGANIZATION` or `$env:OPEN
<command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named" aliases="none">
<maml:name>Instructions</maml:name>
<maml:description>
<maml:para>Override the default system message of the assistant.</maml:para>
<maml:para>Overrides the instructions of the assistant. This is useful for modifying the behavior on a per-run basis.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
<dev:type>
<maml:name>String</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="additional_instructions">
<maml:name>AdditonalInstructions</maml:name>
<maml:description>
<maml:para>Appends additional instructions at the end of the instructions for the run. This is useful for modifying the behavior on a per-run basis without overriding other instructions.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
<dev:type>
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 = '2.4.0'
ModuleVersion = '2.5.0'

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

0 comments on commit b86bed4

Please sign in to comment.