Skip to content

Commit

Permalink
change to gpt-4o as default model, bump the project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenfreund committed May 14, 2024
1 parent 7876274 commit 04ea78a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ authors = [
]
dependencies = [
"llm-utils>=0.2.8",
"openai>=1.6.1",
"openai>=1.29.0",
"rich>=13.7.0",
"ansicolors>=1.1.8",
"traitlets>=5.14.1",
"ipdb>=0.13.13",
"ipython>=8.18.1",
"litellm>=1.34.12",
"litellm>=1.37.9",
"PyYAML>=6.0.1",
"ipyflow>=0.0.130",
"numpy>=1.26.3",
Expand Down
2 changes: 1 addition & 1 deletion src/chatdbg/util/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def error(self, message):

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

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

0 comments on commit 04ea78a

Please sign in to comment.