From df612b7c8ae21668b819fa19a67108e669cf8545 Mon Sep 17 00:00:00 2001 From: Akash Date: Tue, 6 Feb 2024 16:59:52 +0530 Subject: [PATCH] Incorrect import statement was present in conversible_agent.py. It has been corrected. --- autogen/agentchat/conversable_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen/agentchat/conversable_agent.py b/autogen/agentchat/conversable_agent.py index e4bf538369eb..7e30584576c7 100644 --- a/autogen/agentchat/conversable_agent.py +++ b/autogen/agentchat/conversable_agent.py @@ -9,7 +9,7 @@ from typing import Any, Awaitable, Callable, Dict, List, Literal, Optional, Tuple, Type, TypeVar, Union import warnings -from .. import OpenAIWrapper, ModelClient +from ..oai.client import OpenAIWrapper, ModelClient from ..cache.cache import Cache from ..code_utils import ( DEFAULT_MODEL,