Skip to content

Commit e2e5bb7

Browse files
committed
update to 4.0.0.0
1 parent 12de322 commit e2e5bb7

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
| Date | Version | Description |
55
|------------|----------|-----------------------------------------------------------------------------|
6+
| 2024-06-17 | v4.0.0.0 | Assistant support! [#170](https://github.com/chenxizhang/openai-powershell/issues/170) |
67
| 2024-06-03 | v3.0.1.0 | Bug fix [#249](https://github.com/chenxizhang/openai-powershell/issues/249) |
78
| 2024-06-02 | v3.0.0.9 | Support save profile [#139](https://github.com/chenxizhang/openai-powershell/issues/139) |
89
| 2024-06-02 | v3.0.0.8 | Bug fix [#245](https://github.com/chenxizhang/openai-powershell/issues/245), update the help content. |

code365scripts.openai/Public/New-ChatGPTConversation.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ function New-ChatGPTConversation {
3434
If you have multiple environment to use, you can specify the environment name here, and then define the environment in the profile.json file. You can also use "profile" or "env" as the alias.
3535
.PARAMETER env_config
3636
The profile.json file path, the default value is "$env:USERPROFILE/.openai-powershell/profile.json".
37+
.PARAMETER assistant_id
38+
The assistant id to use for this request.
39+
.PARAMETER files
40+
The files to use for this request, it should be an array of file path, or a folder. We will create a new assistant for you, files will updated to openai if you want, and we will create a vector_store for those files to support embedding and semantic search. (Don't worry, the assistant and vector_store will be deleted after the chat conversation.)
3741
.EXAMPLE
3842
New-ChatGPTConversation
3943

code365scripts.openai/code365scripts.openai.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = '.\code365scripts.openai.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.0.1.2'
15+
ModuleVersion = '4.0.0.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = @("Desktop", "Core")

0 commit comments

Comments
 (0)