Disabled general availability of gpt-4 (it's rolling out, not 100% available yet)

This commit is contained in:
Paul Gauthier 2023-07-08 05:57:56 -07:00
parent be318022e2
commit b4fe54a917
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,9 @@
# Release history
### v0.8.2
- Disabled general availability of gpt-4 (it's rolling out, not 100% available yet)
### v0.8.1
- Ask to create a git repo if none found, to better track GPT's code changes

View file

@ -40,7 +40,6 @@ class Model:
if tokens == 8:
self.prompt_price = 0.03
self.completion_price = 0.06
self.always_available = True
elif tokens == 32:
self.prompt_price = 0.06
self.completion_price = 0.12