Skip to content
Snippets Groups Projects
Unverified Commit 2e4b0de5 authored by Logan's avatar Logan Committed by GitHub
Browse files

gpt-4o support (#13463)

parent 17edf712
Branches
Tags
No related merge requests found
......@@ -45,6 +45,8 @@ GPT4_MODELS: Dict[str, int] = {
"gpt-4-1106-vision-preview": 128000,
"gpt-4-turbo-2024-04-09": 128000,
"gpt-4-turbo": 128000,
"gpt-4o": 128000,
"gpt-4o-2024-05-13": 128000,
# 0613 models (function calling):
# https://openai.com/blog/function-calling-and-other-api-updates
"gpt-4-0613": 8192,
......
......@@ -29,7 +29,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-llms-openai"
readme = "README.md"
version = "0.1.18"
version = "0.1.19"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
......
......@@ -13,6 +13,8 @@ GPT4V_MODELS = {
"gpt-4-vision-preview": 128000,
"gpt-4-turbo-2024-04-09": 128000,
"gpt-4-turbo": 128000,
"gpt-4o": 128000,
"gpt-4o-2024-05-13": 128000,
}
......
......@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-multi-modal-llms-openai"
readme = "README.md"
version = "0.1.5"
version = "0.1.6"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment