Skip to content

Commit 04ea78a

Browse files
committed
change to gpt-4o as default model, bump the project dependencies
1 parent 7876274 commit 04ea78a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ authors = [
1313
]
1414
dependencies = [
1515
"llm-utils>=0.2.8",
16-
"openai>=1.6.1",
16+
"openai>=1.29.0",
1717
"rich>=13.7.0",
1818
"ansicolors>=1.1.8",
1919
"traitlets>=5.14.1",
2020
"ipdb>=0.13.13",
2121
"ipython>=8.18.1",
22-
"litellm>=1.34.12",
22+
"litellm>=1.37.9",
2323
"PyYAML>=6.0.1",
2424
"ipyflow>=0.0.130",
2525
"numpy>=1.26.3",

src/chatdbg/util/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def error(self, message):
3939

4040
class ChatDBGConfig(Configurable):
4141
model = Unicode(
42-
_chatdbg_get_env("model", "gpt-4-1106-preview"), help="The LLM model"
42+
_chatdbg_get_env("model", "gpt-4o"), help="The LLM model"
4343
).tag(config=True)
4444

4545
debug = Bool(_chatdbg_get_env("debug", False), help="Log LLM calls").tag(

0 commit comments

Comments
 (0)