From 04ea78a7709f43e471549e771d20d23287b15f0a Mon Sep 17 00:00:00 2001 From: stephenfreund Date: Tue, 14 May 2024 10:20:00 -0400 Subject: [PATCH] change to gpt-4o as default model, bump the project dependencies --- pyproject.toml | 4 ++-- src/chatdbg/util/config.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8ab28f8..b8e38b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", diff --git a/src/chatdbg/util/config.py b/src/chatdbg/util/config.py index accd126..17ee2a1 100644 --- a/src/chatdbg/util/config.py +++ b/src/chatdbg/util/config.py @@ -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(