Skip to content

Commit 466c5bc

Browse files
authored
Merge pull request #1039 from parea-ai/PAI-1446-fix-new-open-ai-model-pricing
fix costs
2 parents cfcda67 + 44e3b86 commit 466c5bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

parea/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ def str2bool(v):
147147
"token_limit": {"max_completion_tokens": 4096, "max_prompt_tokens": 128000},
148148
},
149149
"gpt-4o-2024-08-06": {
150-
"prompt": 5.0,
151-
"completion": 15.0,
150+
"prompt": 2.5,
151+
"completion": 10.0,
152152
"token_limit": {"max_completion_tokens": 4096, "max_prompt_tokens": 128000},
153153
},
154154
"gpt-4o-mini": {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
66
[tool.poetry]
77
name = "parea-ai"
88
packages = [{ include = "parea" }]
9-
version = "0.2.193"
9+
version = "0.2.194"
1010
description = "Parea python sdk"
1111
readme = "README.md"
1212
authors = ["joel-parea-ai <[email protected]>"]

0 commit comments

Comments
 (0)