From 7811c1556eaba4d81ba5e50c1a8e2422d2c6422c Mon Sep 17 00:00:00 2001 From: AkashKulkarni4444 <97426329+AkashKulkarni4444@users.noreply.github.com> Date: Tue, 6 Feb 2024 22:44:57 +0530 Subject: [PATCH] Incorrect import statement was present in conversible_agent.py. (#1557) 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,