-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated chat sessions to be able to take the no_stream option (#91)
Following #89, in order to run o1 models you need to supply the options: ```bash gpt --no_stream --temperature=1 --model=o1-preview ``` as o1 is not built for more than one temperature and cannot stream. Whilst `--no_stream` works for `--prompt` and `--execute`, it does not work for chat mode. This PR implements this by adding it as an attribute read from the command line arguments to `CLIChatSession`
- Loading branch information
1 parent
e448f07
commit b4f1f22
Showing
3 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters