You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:fire: May 24, 2024: Foundation Capital published an article on [Forbes: The Promise of Multi-Agent AI](https://www.forbes.com/sites/joannechen/2024/05/24/the-promise-of-multi-agent-ai/?sh=2c1e4f454d97) and a video [AI in the Real World Episode 2: Exploring Multi-Agent AI and AutoGen with Chi Wang](https://www.youtube.com/watch?v=RLwyXRVvlNk).
20
+
18
21
:fire: May 13, 2024: [The Economist](https://www.economist.com/science-and-technology/2024/05/13/todays-ai-models-are-impressive-teams-of-them-will-be-formidable) published an article about multi-agent systems (MAS) following a January 2024 interview with [Chi Wang](https://github.com/sonichi).
19
22
20
-
:fire: May 11, 2024: [AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation](https://openreview.net/pdf?id=uAjxFFing2) received the best paper award in[ICLR 2024 LLM Agents Workshop](https://llmagents.github.io/).
23
+
:fire: May 11, 2024: [AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation](https://openreview.net/pdf?id=uAjxFFing2) received the best paper award at the[ICLR 2024 LLM Agents Workshop](https://llmagents.github.io/).
21
24
22
25
:fire: Apr 26, 2024: [AutoGen.NET](https://microsoft.github.io/autogen-for-net/) is available for .NET developers!
"Context handling with TransformChatHistory is deprecated. "
12
-
"Please use TransformMessages from autogen/agentchat/contrib/capabilities/transform_messages.py instead.",
11
+
"Context handling with TransformChatHistory is deprecated and will be removed in `0.2.30`. "
12
+
"Please use `TransformMessages`, documentation can be found at https://microsoft.github.io/autogen/docs/topics/handling_long_contexts/intro_to_transform_messages",
Copy file name to clipboardExpand all lines: autogen/agentchat/contrib/compressible_agent.py
+2-2
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@
13
13
logger=logging.getLogger(__name__)
14
14
15
15
warn(
16
-
"Context handling with CompressibleAgent is deprecated. "
17
-
"Please use `TransformMessages`, documentation can be found at https://microsoft.github.io/autogen/docs/reference/agentchat/contrib/capabilities/transform_messages",
16
+
"Context handling with CompressibleAgent is deprecated and will be removed in `0.2.30`. "
17
+
"Please use `TransformMessages`, documentation can be found at https://microsoft.github.io/autogen/docs/topics/handling_long_contexts/intro_to_transform_messages",
0 commit comments