From 3230669a205835c73e862011eb259914fa71ce71 Mon Sep 17 00:00:00 2001
From: Jaldert Rombouts <jaldert@pm.me>
Date: Fri, 2 Feb 2024 15:45:20 +0000
Subject: [PATCH] Update openai_utils.py (#10412)

---
 llama_index/llms/openai_utils.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/llama_index/llms/openai_utils.py b/llama_index/llms/openai_utils.py
index a3f25621f..31402e36a 100644
--- a/llama_index/llms/openai_utils.py
+++ b/llama_index/llms/openai_utils.py
@@ -68,6 +68,8 @@ TURBO_MODELS: Dict[str, int] = {
     # resolves to gpt-3.5-turbo-16k-0613 until 2023-12-11
     # resolves to gpt-3.5-turbo-1106 after
     "gpt-3.5-turbo-16k": 16384,
+    # 0125 (2024) model (JSON mode)
+    "gpt-3.5-turbo-0125": 16385,
     # 1106 model (JSON mode)
     "gpt-3.5-turbo-1106": 16384,
     # 0613 models (function calling):
-- 
GitLab