mirror of https://github.com/microsoft/autogen.git
Add latest gpt-4o model: `gpt-4o-2024-08-06` (#3329)
Co-authored-by: Xiaoyun Zhang <bigmiao.zhang@gmail.com>
This commit is contained in:
parent
f49ed29b4e
commit
2a436c90e6
|
@ -28,6 +28,7 @@ OAI_PRICE1K = {
|
|||
# gpt-4o
|
||||
"gpt-4o": (0.005, 0.015),
|
||||
"gpt-4o-2024-05-13": (0.005, 0.015),
|
||||
"gpt-4o-2024-08-06": (0.0025, 0.01),
|
||||
# gpt-4-turbo
|
||||
"gpt-4-turbo-2024-04-09": (0.01, 0.03),
|
||||
# gpt-4
|
||||
|
|
|
@ -36,6 +36,7 @@ def get_max_token_limit(model: str = "gpt-3.5-turbo-0613") -> int:
|
|||
"gpt-4-vision-preview": 128000,
|
||||
"gpt-4o": 128000,
|
||||
"gpt-4o-2024-05-13": 128000,
|
||||
"gpt-4o-2024-08-06": 128000,
|
||||
"gpt-4o-mini": 128000,
|
||||
"gpt-4o-mini-2024-07-18": 128000,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue