Releases: transitive-bullshit/agentic
Update to official chatgpt model from 2022
- feat: update chatgpt model bc79490
Replace chat model with text-davinci-003 for now
Update: the text-chat-davinci-002-20230126
model has been disabled by OpenAI, which is what this library's currently using under the hood.
OpenAI released this model in stealth to YC and select partners last week. It was fine-tuned for chat and used to some extent by ChatGPT itself. After @waylaidwanderer discovered it, we updated this lib to use it.
This is a temporary setback as we look for a workaround. It is very likely that OpenAI partners still have access to a similar model. If you have any info on workarounds, please share them with one of the admins or in #general.
This update replaces the previously leaked model text-chat-davinci-002-20230126
with text-davinci-003
, which is pretty much standard GPT-3. It is not fine-tuned for chat, but it should work well enough for the time being to keep your applications working.
NOTE: this model is not free and your OpenAI account will be charged for usage. Double check their pricing to make sure this is okay for your use case.
Fix for completionParams to override model
Fix latest npm release
Improve docs and explain some customization options
v3 update for browser-based version: use updated model
- feat: update model for browser-based version b8f03f3
Fix for conversationId undefined
update readme to clarify new version
MAJOR BREAKING CHANGE: browser ⇒ official API 🔥
This change removes the browser version and all puppeteer logic and replaces it with the official OpenAI API, using a leaked chatgpt
model that is likely in preparation for their upcoming API launch.
Additional logic around prompt history and context support was added because we now need to store the message history ourselves.
The net result is that this package is now significantly simpler and more robust.
Huge thanks to @waylaidwanderer for discovering the leaked chatgpt
model! 🔥 🔥 🔥
- Merge pull request #284 from transitive-bullshit/feature/hidden-model-api af1f57f
- 🐷 67b872b
- 💍 cd249f9
- docs: update readme and auto-gen docs 3a0259c
- feat: add persistence demo and keyv support 531e180
- feat: MAJOR BREAKING CHANGE; moved from browser to official completion API with unofficial chatgpt model 21dd9d5
Add support for premium / pro / paid accounts
Just set the isProAccount
option in ChatGPTAPIBrowser
constructor.