- Mon Mar 13 2023: fix threading error with SQLite connections
- Mon Mar 13 2023: updates to example config
- Sun Mar 12 2023: add note about adding EDITOR env var in Windows
- Sun Mar 12 2023: try to get windows editor from env first
- Sun Mar 12 2023: add install notes for windows users
- Sun Mar 12 2023: launch backend after check for config CLI arg
- Sun Mar 12 2023: fix ask/ask_stream signatures to support custom titles
- Sun Mar 12 2023: add prompt-engineer example
- Sun Mar 12 2023: add 'Backend configuration' section to config output
- Sun Mar 12 2023: temp workaround for issue #224
- Sat Mar 11 2023: allow overriding system message in template front matter
- Sat Mar 11 2023: add support for frontmatter in templates
- Sat Mar 11 2023: add some example templates and API scripts
- Sat Mar 11 2023: allow passing custom title to ask/ask_stream in api backend
- Sat Mar 11 2023: init defaults for templates
- Sat Mar 11 2023: try to discover env editor on osx
- Sat Mar 11 2023: template_copy/template_delete commands
- Sat Mar 11 2023: kill special sauce for linux editor filetype, no longer needed
- Fri Mar 10 2023: ensure self.templates is a list
- Fri Mar 10 2023: add link to new video walkthrough
- Fri Mar 10 2023: fix markdown filetype for vim syntax highlighting
- Fri Mar 10 2023: HOTFIX for broken templates directory location
- Fri Mar 10 2023: indicator for current conversation in /history list
- Fri Mar 10 2023: tweak /chat help
- Fri Mar 10 2023: set new conversation in API backend on user login
- Fri Mar 10 2023: add default_user_id arg to init of API backend
- Fri Mar 10 2023: add tests for chatgpt-api Python module
- Fri Mar 10 2023: output user id in users list
- Fri Mar 10 2023: add utility scripts for commit log and pypi release
- Add completions for many more commands
- Show/set system message (initial context message for all conversations)
- System message aliases
- Template management system. See below for details (alpha, subject to change)
- Set 'markdown' filetype for editor invocations (supports syntax highlighting)
- Add built template variables, see below for details
- Native editor module (removes vipe dependency)
-
The return values for the public methods of the
ChatGPT/AsyncChatGPTclasses have changed, they are now tuple with the following values:success: Boolean, True if the operation succeeded, False if the operation failed.data: Object, the data the command generated.message: Human-readable message about the outcome of the operation.
-
Introduced the concept of multiple 'backends' -- see below for the currently supported ones
-
Added the 'chatgpt-api' backend, communicates via the official OpenAI REST endpoint for ChatGPT
- Basic multi-user support (admin party at CLI)
- Data stored in a database (SQLite by default, any configurable in SQLAlchemy allowed)
- Allows full model customiztion
- Numerous new shell commands and enhancements
- ChatGPT/AsyncChatGPT classes have changed how they receive configuration values, be sure to investigate the new function signatues for their init() and create() methods.
- New configuration system
- Added '/config' command
- Fix broken
ChatGPTsync class - Removed nest_asyncio dependency
- Convert CLI to use
AsyncChatGPTclass - Initial implementation of stop generating text response
- REVERT BREAKING CHANGE: Asyncio module requirement removed from usage of ChatGPT class, it is now a sync wrapper around the async class
- Command leader changed from '!' to '/'
- Asyncio module is now required to use ChatGPT class directly (refer to Python usage)
- Added '/quit' command
- Added '/delete' support for history IDs/UUIDs
- Added '/chat' command
- Added '/switch' command
- Added '/title' command
- Added limit/offset support for '/history'
- Migrated to async Playwright
- Initial API in Flask (see How to use the API)
- Added tab completion for commands
- Added '/tmp' volume for saving Playwright session
- Added CI and CodeQL workflows
- Added simple developer debug module
- Improved session refreshing (/session now works!)
- Migrated to Prompt Toolkit
See commit log for previous updates
- 21/02/2023: v0.3.17
- Added debug mode (visible browser window).
- @thehunmonkgroup fixed chat naming.
- @thehunmonkgroup added !delete command to remove/hide conversations.
- @thehunmonkgroup added --model flag to select model ('default' or 'legacy-paid' or 'legacy-free').
- @thehunmonkgroup added !editor command to open the current prompt in an editor and send the edited prompt to ChatGPT.
- @thehunmonkgroup added !history command to show the list of the last 20 conversations.
- @NatLee added docker support.
- 17/02/2023: v0.3.16
- Ability to open multiple sessions in parallel.
- Code now works with ChatGPT Plus subscription.
- 14/02/2023: v0.3.15 - Updated model to text-davinci-002-render-sha (turbo model).
- 14/02/2023: v0.3.11
- Fixed many bugs with installation. Code is refactored.
- Now able to use the python wrapper with a proxy.
- 18/01/2023: v0.3.8 - Commands now are run only using !. For instance to enable read mode (for copy-paste and long prompts) you need to write now
!readinstead ofread. This is to avoid conflicts with the chatgpt prompts. Fixed timeout issue. - 17/01/2023: v0.3.7 - Added timeout to
askmethod to prevent hanging. Fixed return to terminal breakdown. Streaming output now is activated by default.