Skip to content

Commit 52179bd

Browse files
committed
fix costs
1 parent cfcda67 commit 52179bd

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

parea/constants.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
from typing import Dict, Union
2-
31
import os
2+
from typing import Dict, Union
43

54
from dotenv import load_dotenv
65

@@ -147,8 +146,8 @@ def str2bool(v):
147146
"token_limit": {"max_completion_tokens": 4096, "max_prompt_tokens": 128000},
148147
},
149148
"gpt-4o-2024-08-06": {
150-
"prompt": 5.0,
151-
"completion": 15.0,
149+
"prompt": 2.5,
150+
"completion": 10.0,
152151
"token_limit": {"max_completion_tokens": 4096, "max_prompt_tokens": 128000},
153152
},
154153
"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)