From 2578e4a0fac866748781c8e010dde7da4a5f1db5 Mon Sep 17 00:00:00 2001 From: Eric Zhu Date: Tue, 1 Oct 2024 09:12:27 -0700 Subject: [PATCH] use gpt-4o --- notebook/agentchat_auto_feedback_from_code_execution.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebook/agentchat_auto_feedback_from_code_execution.ipynb b/notebook/agentchat_auto_feedback_from_code_execution.ipynb index 6ea6f662b93b..51b5a5917341 100644 --- a/notebook/agentchat_auto_feedback_from_code_execution.ipynb +++ b/notebook/agentchat_auto_feedback_from_code_execution.ipynb @@ -37,10 +37,10 @@ "\n", "config_list = autogen.config_list_from_json(\n", " \"OAI_CONFIG_LIST\",\n", - " filter_dict={\"tags\": [\"gpt-4\"]}, # comment out to get all\n", + " filter_dict={\"tags\": [\"gpt-4o\"]}, # comment out to get all\n", ")\n", "# When using a single openai endpoint, you can use the following:\n", - "# config_list = [{\"model\": \"gpt-4\", \"api_key\": os.getenv(\"OPENAI_API_KEY\")}]" + "# config_list = [{\"model\": \"gpt-4o\", \"api_key\": os.getenv(\"OPENAI_API_KEY\")}]" ] }, {