From 9385f5bfe40ed8b1bf55c6820df31ccaf3475236 Mon Sep 17 00:00:00 2001 From: Chi Wang Date: Mon, 29 Apr 2024 00:36:02 +0000 Subject: [PATCH] tags for config --- autogen/version.py | 2 +- notebook/agentchat_function_call_async.ipynb | 4 ++-- notebook/agentchat_groupchat_stateflow.ipynb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/autogen/version.py b/autogen/version.py index 3b9e925d1652..be2d7c2ffe30 100644 --- a/autogen/version.py +++ b/autogen/version.py @@ -1 +1 @@ -__version__ = "0.2.26" +__version__ = "0.2.27" diff --git a/notebook/agentchat_function_call_async.ipynb b/notebook/agentchat_function_call_async.ipynb index 78a8d191915e..57233547ebc8 100644 --- a/notebook/agentchat_function_call_async.ipynb +++ b/notebook/agentchat_function_call_async.ipynb @@ -44,7 +44,7 @@ "import autogen\n", "from autogen.cache import Cache\n", "\n", - "config_list = autogen.config_list_from_json(env_or_file=\"OAI_CONFIG_LIST\")" + "config_list = autogen.config_list_from_json(env_or_file=\"OAI_CONFIG_LIST\", filter_dict={\"tags\": [\"tool\"]})" ] }, { @@ -384,7 +384,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.13" + "version": "3.10.14" } }, "nbformat": 4, diff --git a/notebook/agentchat_groupchat_stateflow.ipynb b/notebook/agentchat_groupchat_stateflow.ipynb index c824046f73af..b8810d2fb632 100644 --- a/notebook/agentchat_groupchat_stateflow.ipynb +++ b/notebook/agentchat_groupchat_stateflow.ipynb @@ -43,7 +43,7 @@ "config_list = autogen.config_list_from_json(\n", " \"OAI_CONFIG_LIST\",\n", " filter_dict={\n", - " \"model\": [\"gpt-4\", \"gpt-4-1106-preview\"],\n", + " \"tags\": [\"gpt-4\", \"gpt-4-32k\"],\n", " },\n", ")" ]