Skip to content

Commit

Permalink
Merge pull request #1039 from parea-ai/PAI-1446-fix-new-open-ai-model…
Browse files Browse the repository at this point in the history
…-pricing

fix costs
  • Loading branch information
jalexanderII authored Aug 7, 2024
2 parents cfcda67 + 44e3b86 commit 466c5bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions parea/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ def str2bool(v):
"token_limit": {"max_completion_tokens": 4096, "max_prompt_tokens": 128000},
},
"gpt-4o-2024-08-06": {
"prompt": 5.0,
"completion": 15.0,
"prompt": 2.5,
"completion": 10.0,
"token_limit": {"max_completion_tokens": 4096, "max_prompt_tokens": 128000},
},
"gpt-4o-mini": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "parea-ai"
packages = [{ include = "parea" }]
version = "0.2.193"
version = "0.2.194"
description = "Parea python sdk"
readme = "README.md"
authors = ["joel-parea-ai <[email protected]>"]
Expand Down

0 comments on commit 466c5bc

Please sign in to comment.