Update GPT-3 pricing
This commit is contained in:
parent
2764777c0b
commit
50fa0cc5ae
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "llm-chat"
|
name = "llm-chat"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
description = "A general CLI interface for large language models."
|
description = "A general CLI interface for large language models."
|
||||||
authors = ["Paul Harrison <paul@harrison.sh>"]
|
authors = ["Paul Harrison <paul@harrison.sh>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -82,7 +82,7 @@ class Chat:
|
||||||
|
|
||||||
_pricing: dict[Model, dict[Token, float]] = {
|
_pricing: dict[Model, dict[Token, float]] = {
|
||||||
Model.GPT3: {
|
Model.GPT3: {
|
||||||
Token.COMPLETION: 0.002,
|
Token.COMPLETION: 0.0005,
|
||||||
Token.PROMPT: 0.0015,
|
Token.PROMPT: 0.0015,
|
||||||
},
|
},
|
||||||
Model.GPT4: {
|
Model.GPT4: {
|
||||||
|
|
Loading…
Reference in New Issue