Releases: transitive-bullshit/agentic
Releases · transitive-bullshit/agentic
Decrease maxModelTokens from 4096 to 4000 to be conservative
- fix: set maxModelTokens to 4000 to be conservative and avoid limits 34727e0
Fix apiKey cli param
Fix typo in system message
Export ChatGPTAPIOptions
- chore: update ts docs c87f9c7
- chore: update ChatGPTAPI constructor init for typedoc 48cb944
- Merge pull request #422 from NoodleOfDeath/main ad3d1f9
- feat: switch tokenizer to use cl100k_base encoding for gpt-3.5-turbo model a733b29
- feat: exports init options for external use 1a0b570
Thanks @NoodleOfDeath 🙏
Update npm description
Fix openai types
Update default model to use non-date version
- feat: switch default model to non-date version 0a70f13
Fix CLI streaming bug
- fix: cli streaming issue 6e256e9
- 🍚 26a16fb
- Merge pull request #407 from youngle316/add-nextjschatgpt ffb31ac
- Merge branch 'main' into add-nextjschatgpt 6f08ece
- Update readme.md 2842a55
- Merge pull request #406 from insulineru/add-aicommits 62f267c
- 👄 bdda9a4
- docs: add NextJS chatgpt to README.md 0aa6f37
- chore: add ai-commit library to projects 5d62fe2
Switch to official chat completions API 🔥
The official OpenAI chat completions API has been released, and it is now the default for this package! 🔥
Method | Free? | Robust? | Quality? |
---|---|---|---|
ChatGPTAPI |
❌ No | ✅ Yes | ✅️ Real ChatGPT models |
ChatGPTUnofficialProxyAPI |
✅ Yes | ☑️ Maybe | ✅ Real ChatGPT |
Note: We strongly recommend using ChatGPTAPI
since it uses the officially supported API from OpenAI. We may remove support for ChatGPTUnofficialProxyAPI
in a future release.
ChatGPTAPI
- Uses thegpt-3.5-turbo-0301
model with the official OpenAI chat completions API (official, robust approach, but it's not free)ChatGPTUnofficialProxyAPI
- Uses an unofficial proxy server to access ChatGPT's backend API in a way that circumvents Cloudflare (uses the real ChatGPT and is pretty lightweight, but relies on a third-party server and is rate-limited)