ag2 0.4b1__py3-none-any.whl → 0.4.2b1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ag2 might be problematic. Click here for more details.

Files changed (118) hide show
  1. ag2-0.4.2b1.dist-info/METADATA +19 -0
  2. ag2-0.4.2b1.dist-info/RECORD +6 -0
  3. ag2-0.4.2b1.dist-info/top_level.txt +1 -0
  4. ag2-0.4b1.dist-info/METADATA +0 -496
  5. ag2-0.4b1.dist-info/RECORD +0 -115
  6. ag2-0.4b1.dist-info/top_level.txt +0 -1
  7. autogen/__init__.py +0 -17
  8. autogen/_pydantic.py +0 -116
  9. autogen/agentchat/__init__.py +0 -42
  10. autogen/agentchat/agent.py +0 -142
  11. autogen/agentchat/assistant_agent.py +0 -85
  12. autogen/agentchat/chat.py +0 -306
  13. autogen/agentchat/contrib/__init__.py +0 -0
  14. autogen/agentchat/contrib/agent_builder.py +0 -787
  15. autogen/agentchat/contrib/agent_optimizer.py +0 -450
  16. autogen/agentchat/contrib/capabilities/__init__.py +0 -0
  17. autogen/agentchat/contrib/capabilities/agent_capability.py +0 -21
  18. autogen/agentchat/contrib/capabilities/generate_images.py +0 -297
  19. autogen/agentchat/contrib/capabilities/teachability.py +0 -406
  20. autogen/agentchat/contrib/capabilities/text_compressors.py +0 -72
  21. autogen/agentchat/contrib/capabilities/transform_messages.py +0 -92
  22. autogen/agentchat/contrib/capabilities/transforms.py +0 -565
  23. autogen/agentchat/contrib/capabilities/transforms_util.py +0 -120
  24. autogen/agentchat/contrib/capabilities/vision_capability.py +0 -217
  25. autogen/agentchat/contrib/captainagent.py +0 -487
  26. autogen/agentchat/contrib/gpt_assistant_agent.py +0 -545
  27. autogen/agentchat/contrib/graph_rag/__init__.py +0 -0
  28. autogen/agentchat/contrib/graph_rag/document.py +0 -24
  29. autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py +0 -76
  30. autogen/agentchat/contrib/graph_rag/graph_query_engine.py +0 -50
  31. autogen/agentchat/contrib/graph_rag/graph_rag_capability.py +0 -56
  32. autogen/agentchat/contrib/img_utils.py +0 -390
  33. autogen/agentchat/contrib/llamaindex_conversable_agent.py +0 -123
  34. autogen/agentchat/contrib/llava_agent.py +0 -176
  35. autogen/agentchat/contrib/math_user_proxy_agent.py +0 -471
  36. autogen/agentchat/contrib/multimodal_conversable_agent.py +0 -128
  37. autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +0 -325
  38. autogen/agentchat/contrib/retrieve_assistant_agent.py +0 -56
  39. autogen/agentchat/contrib/retrieve_user_proxy_agent.py +0 -701
  40. autogen/agentchat/contrib/society_of_mind_agent.py +0 -203
  41. autogen/agentchat/contrib/swarm_agent.py +0 -414
  42. autogen/agentchat/contrib/text_analyzer_agent.py +0 -76
  43. autogen/agentchat/contrib/tool_retriever.py +0 -114
  44. autogen/agentchat/contrib/vectordb/__init__.py +0 -0
  45. autogen/agentchat/contrib/vectordb/base.py +0 -243
  46. autogen/agentchat/contrib/vectordb/chromadb.py +0 -326
  47. autogen/agentchat/contrib/vectordb/mongodb.py +0 -559
  48. autogen/agentchat/contrib/vectordb/pgvectordb.py +0 -958
  49. autogen/agentchat/contrib/vectordb/qdrant.py +0 -334
  50. autogen/agentchat/contrib/vectordb/utils.py +0 -126
  51. autogen/agentchat/contrib/web_surfer.py +0 -305
  52. autogen/agentchat/conversable_agent.py +0 -2908
  53. autogen/agentchat/groupchat.py +0 -1668
  54. autogen/agentchat/user_proxy_agent.py +0 -109
  55. autogen/agentchat/utils.py +0 -207
  56. autogen/browser_utils.py +0 -291
  57. autogen/cache/__init__.py +0 -10
  58. autogen/cache/abstract_cache_base.py +0 -78
  59. autogen/cache/cache.py +0 -182
  60. autogen/cache/cache_factory.py +0 -85
  61. autogen/cache/cosmos_db_cache.py +0 -150
  62. autogen/cache/disk_cache.py +0 -109
  63. autogen/cache/in_memory_cache.py +0 -61
  64. autogen/cache/redis_cache.py +0 -128
  65. autogen/code_utils.py +0 -745
  66. autogen/coding/__init__.py +0 -22
  67. autogen/coding/base.py +0 -113
  68. autogen/coding/docker_commandline_code_executor.py +0 -262
  69. autogen/coding/factory.py +0 -45
  70. autogen/coding/func_with_reqs.py +0 -203
  71. autogen/coding/jupyter/__init__.py +0 -22
  72. autogen/coding/jupyter/base.py +0 -32
  73. autogen/coding/jupyter/docker_jupyter_server.py +0 -164
  74. autogen/coding/jupyter/embedded_ipython_code_executor.py +0 -182
  75. autogen/coding/jupyter/jupyter_client.py +0 -224
  76. autogen/coding/jupyter/jupyter_code_executor.py +0 -161
  77. autogen/coding/jupyter/local_jupyter_server.py +0 -168
  78. autogen/coding/local_commandline_code_executor.py +0 -410
  79. autogen/coding/markdown_code_extractor.py +0 -44
  80. autogen/coding/utils.py +0 -57
  81. autogen/exception_utils.py +0 -46
  82. autogen/extensions/__init__.py +0 -0
  83. autogen/formatting_utils.py +0 -76
  84. autogen/function_utils.py +0 -362
  85. autogen/graph_utils.py +0 -148
  86. autogen/io/__init__.py +0 -15
  87. autogen/io/base.py +0 -105
  88. autogen/io/console.py +0 -43
  89. autogen/io/websockets.py +0 -213
  90. autogen/logger/__init__.py +0 -11
  91. autogen/logger/base_logger.py +0 -140
  92. autogen/logger/file_logger.py +0 -287
  93. autogen/logger/logger_factory.py +0 -29
  94. autogen/logger/logger_utils.py +0 -42
  95. autogen/logger/sqlite_logger.py +0 -459
  96. autogen/math_utils.py +0 -356
  97. autogen/oai/__init__.py +0 -33
  98. autogen/oai/anthropic.py +0 -428
  99. autogen/oai/bedrock.py +0 -600
  100. autogen/oai/cerebras.py +0 -264
  101. autogen/oai/client.py +0 -1148
  102. autogen/oai/client_utils.py +0 -167
  103. autogen/oai/cohere.py +0 -453
  104. autogen/oai/completion.py +0 -1216
  105. autogen/oai/gemini.py +0 -469
  106. autogen/oai/groq.py +0 -281
  107. autogen/oai/mistral.py +0 -279
  108. autogen/oai/ollama.py +0 -576
  109. autogen/oai/openai_utils.py +0 -810
  110. autogen/oai/together.py +0 -343
  111. autogen/retrieve_utils.py +0 -487
  112. autogen/runtime_logging.py +0 -163
  113. autogen/token_count_utils.py +0 -257
  114. autogen/types.py +0 -20
  115. autogen/version.py +0 -7
  116. {ag2-0.4b1.dist-info → ag2-0.4.2b1.dist-info}/LICENSE +0 -0
  117. {ag2-0.4b1.dist-info → ag2-0.4.2b1.dist-info}/NOTICE.md +0 -0
  118. {ag2-0.4b1.dist-info → ag2-0.4.2b1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.1
2
+ Name: ag2
3
+ Version: 0.4.2b1
4
+ Summary: Alias package for pyautogen
5
+ Home-page: https://github.com/ag2ai/ag2
6
+ Author: Chi Wang & Qingyun Wu
7
+ Author-email: support@ag2.ai
8
+ License: Apache Software License 2.0
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.8,<3.14
14
+ License-File: LICENSE
15
+ License-File: NOTICE.md
16
+ Requires-Dist: pyautogen (==0.4.2b1)
17
+
18
+ UNKNOWN
19
+
@@ -0,0 +1,6 @@
1
+ ag2-0.4.2b1.dist-info/LICENSE,sha256=GEFQVNayAR-S_rQD5l8hPdgvgyktVdy4Bx5-v90IfRI,11384
2
+ ag2-0.4.2b1.dist-info/METADATA,sha256=WVQ5IY0bekHLc_YQGFnRHhs2iIAcRwsMsiw9O67UDxI,520
3
+ ag2-0.4.2b1.dist-info/NOTICE.md,sha256=ucvou1bE6i2s40qyuU9RL0TeIVG01VhXoQ59EngtEz4,1317
4
+ ag2-0.4.2b1.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
5
+ ag2-0.4.2b1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
6
+ ag2-0.4.2b1.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+
@@ -1,496 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: ag2
3
- Version: 0.4b1
4
- Summary: A programming framework for agentic AI
5
- Home-page: https://github.com/ag2ai/ag2
6
- Author: Chi Wang & Qingyun Wu
7
- Author-email: support@ag2.ai
8
- License: Apache Software License 2.0
9
- Platform: UNKNOWN
10
- Classifier: Programming Language :: Python :: 3
11
- Classifier: License :: OSI Approved :: Apache Software License
12
- Classifier: Operating System :: OS Independent
13
- Requires-Python: >=3.8,<3.14
14
- Description-Content-Type: text/markdown
15
- License-File: LICENSE
16
- License-File: NOTICE.md
17
- Requires-Dist: diskcache
18
- Requires-Dist: docker
19
- Requires-Dist: flaml
20
- Requires-Dist: openai (>=1.3)
21
- Requires-Dist: packaging
22
- Requires-Dist: pydantic (!=2.6.0,<3,>=1.10)
23
- Requires-Dist: python-dotenv
24
- Requires-Dist: termcolor
25
- Requires-Dist: tiktoken
26
- Requires-Dist: numpy (<2.0.0,>=1.24.0) ; python_version < "3.13"
27
- Requires-Dist: numpy (>=2.1) ; python_version >= "3.13"
28
- Provides-Extra: anthropic
29
- Requires-Dist: anthropic (>=0.23.1) ; extra == 'anthropic'
30
- Provides-Extra: autobuild
31
- Requires-Dist: chromadb ; extra == 'autobuild'
32
- Requires-Dist: huggingface-hub ; extra == 'autobuild'
33
- Requires-Dist: pysqlite3 ; extra == 'autobuild'
34
- Requires-Dist: sentence-transformers ; extra == 'autobuild'
35
- Provides-Extra: bedrock
36
- Requires-Dist: boto3 (>=1.34.149) ; extra == 'bedrock'
37
- Provides-Extra: blendsearch
38
- Requires-Dist: flaml[blendsearch] ; extra == 'blendsearch'
39
- Provides-Extra: captainagent
40
- Requires-Dist: chromadb ; extra == 'captainagent'
41
- Requires-Dist: huggingface-hub ; extra == 'captainagent'
42
- Requires-Dist: pysqlite3 ; extra == 'captainagent'
43
- Requires-Dist: sentence-transformers ; extra == 'captainagent'
44
- Provides-Extra: cerebras
45
- Requires-Dist: cerebras-cloud-sdk (>=1.0.0) ; extra == 'cerebras'
46
- Provides-Extra: cohere
47
- Requires-Dist: cohere (>=5.5.8) ; extra == 'cohere'
48
- Provides-Extra: cosmosdb
49
- Requires-Dist: azure-cosmos (>=4.2.0) ; extra == 'cosmosdb'
50
- Provides-Extra: gemini
51
- Requires-Dist: google-auth ; extra == 'gemini'
52
- Requires-Dist: google-cloud-aiplatform ; extra == 'gemini'
53
- Requires-Dist: google-generativeai (<1,>=0.5) ; extra == 'gemini'
54
- Requires-Dist: pillow ; extra == 'gemini'
55
- Requires-Dist: pydantic ; extra == 'gemini'
56
- Provides-Extra: graph
57
- Requires-Dist: matplotlib ; extra == 'graph'
58
- Requires-Dist: networkx ; extra == 'graph'
59
- Provides-Extra: graph_rag_falkor_db
60
- Requires-Dist: graphrag-sdk ; extra == 'graph_rag_falkor_db'
61
- Provides-Extra: groq
62
- Requires-Dist: groq (>=0.9.0) ; extra == 'groq'
63
- Provides-Extra: jupyter-executor
64
- Requires-Dist: ipykernel (>=6.29.0) ; extra == 'jupyter-executor'
65
- Requires-Dist: jupyter-client (>=8.6.0) ; extra == 'jupyter-executor'
66
- Requires-Dist: jupyter-kernel-gateway ; extra == 'jupyter-executor'
67
- Requires-Dist: requests ; extra == 'jupyter-executor'
68
- Requires-Dist: websocket-client ; extra == 'jupyter-executor'
69
- Provides-Extra: lmm
70
- Requires-Dist: pillow ; extra == 'lmm'
71
- Requires-Dist: replicate ; extra == 'lmm'
72
- Provides-Extra: long-context
73
- Requires-Dist: llmlingua (<0.3) ; extra == 'long-context'
74
- Provides-Extra: mathchat
75
- Requires-Dist: pydantic (==1.10.9) ; extra == 'mathchat'
76
- Requires-Dist: sympy ; extra == 'mathchat'
77
- Requires-Dist: wolframalpha ; extra == 'mathchat'
78
- Provides-Extra: mistral
79
- Requires-Dist: mistralai (>=1.0.1) ; extra == 'mistral'
80
- Provides-Extra: ollama
81
- Requires-Dist: fix-busted-json (>=0.0.18) ; extra == 'ollama'
82
- Requires-Dist: ollama (>=0.3.3) ; extra == 'ollama'
83
- Provides-Extra: redis
84
- Requires-Dist: redis ; extra == 'redis'
85
- Provides-Extra: retrievechat
86
- Requires-Dist: beautifulsoup4 ; extra == 'retrievechat'
87
- Requires-Dist: chromadb (==0.5.3) ; extra == 'retrievechat'
88
- Requires-Dist: ipython ; extra == 'retrievechat'
89
- Requires-Dist: markdownify ; extra == 'retrievechat'
90
- Requires-Dist: protobuf (==4.25.3) ; extra == 'retrievechat'
91
- Requires-Dist: pypdf ; extra == 'retrievechat'
92
- Requires-Dist: sentence-transformers ; extra == 'retrievechat'
93
- Provides-Extra: retrievechat-mongodb
94
- Requires-Dist: beautifulsoup4 ; extra == 'retrievechat-mongodb'
95
- Requires-Dist: chromadb (==0.5.3) ; extra == 'retrievechat-mongodb'
96
- Requires-Dist: ipython ; extra == 'retrievechat-mongodb'
97
- Requires-Dist: markdownify ; extra == 'retrievechat-mongodb'
98
- Requires-Dist: protobuf (==4.25.3) ; extra == 'retrievechat-mongodb'
99
- Requires-Dist: pymongo (>=4.0.0) ; extra == 'retrievechat-mongodb'
100
- Requires-Dist: pypdf ; extra == 'retrievechat-mongodb'
101
- Requires-Dist: sentence-transformers ; extra == 'retrievechat-mongodb'
102
- Provides-Extra: retrievechat-pgvector
103
- Requires-Dist: beautifulsoup4 ; extra == 'retrievechat-pgvector'
104
- Requires-Dist: chromadb (==0.5.3) ; extra == 'retrievechat-pgvector'
105
- Requires-Dist: ipython ; extra == 'retrievechat-pgvector'
106
- Requires-Dist: markdownify ; extra == 'retrievechat-pgvector'
107
- Requires-Dist: pgvector (>=0.2.5) ; extra == 'retrievechat-pgvector'
108
- Requires-Dist: protobuf (==4.25.3) ; extra == 'retrievechat-pgvector'
109
- Requires-Dist: psycopg (>=3.1.18) ; extra == 'retrievechat-pgvector'
110
- Requires-Dist: pypdf ; extra == 'retrievechat-pgvector'
111
- Requires-Dist: sentence-transformers ; extra == 'retrievechat-pgvector'
112
- Provides-Extra: retrievechat-qdrant
113
- Requires-Dist: beautifulsoup4 ; extra == 'retrievechat-qdrant'
114
- Requires-Dist: chromadb (==0.5.3) ; extra == 'retrievechat-qdrant'
115
- Requires-Dist: fastembed (>=0.3.1) ; extra == 'retrievechat-qdrant'
116
- Requires-Dist: ipython ; extra == 'retrievechat-qdrant'
117
- Requires-Dist: markdownify ; extra == 'retrievechat-qdrant'
118
- Requires-Dist: protobuf (==4.25.3) ; extra == 'retrievechat-qdrant'
119
- Requires-Dist: pypdf ; extra == 'retrievechat-qdrant'
120
- Requires-Dist: qdrant-client ; extra == 'retrievechat-qdrant'
121
- Requires-Dist: sentence-transformers ; extra == 'retrievechat-qdrant'
122
- Provides-Extra: teachable
123
- Requires-Dist: chromadb ; extra == 'teachable'
124
- Provides-Extra: test
125
- Requires-Dist: ipykernel ; extra == 'test'
126
- Requires-Dist: nbconvert ; extra == 'test'
127
- Requires-Dist: nbformat ; extra == 'test'
128
- Requires-Dist: pandas ; extra == 'test'
129
- Requires-Dist: pre-commit ; extra == 'test'
130
- Requires-Dist: pytest-asyncio ; extra == 'test'
131
- Requires-Dist: pytest-cov (>=5) ; extra == 'test'
132
- Requires-Dist: pytest (<8,>=6.1.1) ; extra == 'test'
133
- Provides-Extra: together
134
- Requires-Dist: together (>=1.2) ; extra == 'together'
135
- Provides-Extra: types
136
- Requires-Dist: ipykernel (>=6.29.0) ; extra == 'types'
137
- Requires-Dist: jupyter-client (>=8.6.0) ; extra == 'types'
138
- Requires-Dist: jupyter-kernel-gateway ; extra == 'types'
139
- Requires-Dist: mypy (==1.9.0) ; extra == 'types'
140
- Requires-Dist: pytest (<8,>=6.1.1) ; extra == 'types'
141
- Requires-Dist: requests ; extra == 'types'
142
- Requires-Dist: websocket-client ; extra == 'types'
143
- Provides-Extra: websockets
144
- Requires-Dist: websockets (<13,>=12.0) ; extra == 'websockets'
145
- Provides-Extra: websurfer
146
- Requires-Dist: beautifulsoup4 ; extra == 'websurfer'
147
- Requires-Dist: markdownify ; extra == 'websurfer'
148
- Requires-Dist: pathvalidate ; extra == 'websurfer'
149
- Requires-Dist: pdfminer.six ; extra == 'websurfer'
150
-
151
- <a name="readme-top"></a>
152
-
153
- [![PyPI version](https://badge.fury.io/py/autogen.svg)](https://badge.fury.io/py/autogen)
154
- [![Build](https://github.com/ag2ai/ag2/actions/workflows/python-package.yml/badge.svg)](https://github.com/ag2ai/ag2/actions/workflows/python-package.yml)
155
- ![Python Version](https://img.shields.io/badge/3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue)
156
- [![Discord](https://img.shields.io/discord/1153072414184452236?logo=discord&style=flat)](https://discord.gg/pAbnFJrkgZ)
157
- [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40ag2ai)](https://x.com/ag2ai)
158
-
159
- <!-- [![NuGet version](https://badge.fury.io/nu/AutoGen.Core.svg)](https://badge.fury.io/nu/AutoGen.Core) -->
160
-
161
- # [AG2](https://github.com/ag2ai/ag2)
162
-
163
- [📚 Cite paper](#related-papers).
164
- <!-- <p align="center">
165
- <img src="https://github.com/ag2ai/ag2/blob/main/website/static/img/flaml.svg" width=200>
166
- <br>
167
- </p> -->
168
-
169
- > [!IMPORTANT]
170
- >
171
- > :fire: :tada: Nov 11, 2024: We are evolving AutoGen into AG2! A new organization [ag2ai](https://github.com/ag2ai) is created to host the development of AG2 and related projects with open governance. We invite collaborators from all organizations and individuals to join the development.
172
-
173
-
174
- :fire: :tada: AG2 is available via `ag2` (or its alias `autogen` or `pyautogen`) on PyPI! Starting with version 0.3.2, you can now install AG2 using:
175
- ```
176
- pip install ag2
177
- ```
178
- or
179
- ```
180
- pip install pyautogen
181
- ```
182
- or
183
- ```
184
- pip install autogen
185
- ```
186
-
187
-
188
- 📄 **License:**
189
- We adopt the Apache 2.0 license from v0.3. This enhances our commitment to open-source collaboration while providing additional protections for contributors and users alike.
190
-
191
-
192
- :tada: May 29, 2024: DeepLearning.ai launched a new short course [AI Agentic Design Patterns with AutoGen](https://www.deeplearning.ai/short-courses/ai-agentic-design-patterns-with-autogen), made in collaboration with Microsoft and Penn State University, and taught by AutoGen creators [Chi Wang](https://github.com/sonichi) and [Qingyun Wu](https://github.com/qingyun-wu).
193
-
194
- :tada: 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).
195
-
196
- :tada: 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).
197
-
198
- :tada: 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/).
199
-
200
- <!-- :tada: Apr 26, 2024: [AutoGen.NET](https://ag2ai.github.io/ag2-for-net/) is available for .NET developers! -->
201
-
202
- :tada: Apr 17, 2024: Andrew Ng cited AutoGen in [The Batch newsletter](https://www.deeplearning.ai/the-batch/issue-245/) and [What's next for AI agentic workflows](https://youtu.be/sal78ACtGTc?si=JduUzN_1kDnMq0vF) at Sequoia Capital's AI Ascent (Mar 26).
203
-
204
- :tada: Mar 3, 2024: What's new in AutoGen? 📰[Blog](https://ag2ai.github.io/ag2/blog/2024/03/03/AutoGen-Update); 📺[Youtube](https://www.youtube.com/watch?v=j_mtwQiaLGU).
205
-
206
- <!-- :tada: Mar 1, 2024: the first AutoGen multi-agent experiment on the challenging [GAIA](https://huggingface.co/spaces/gaia-benchmark/leaderboard) benchmark achieved the No. 1 accuracy in all the three levels. -->
207
-
208
- <!-- :tada: Jan 30, 2024: AutoGen is highlighted by Peter Lee in Microsoft Research Forum [Keynote](https://t.co/nUBSjPDjqD). -->
209
-
210
- :tada: Dec 31, 2023: [AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation Framework](https://arxiv.org/abs/2308.08155) is selected by [TheSequence: My Five Favorite AI Papers of 2023](https://thesequence.substack.com/p/my-five-favorite-ai-papers-of-2023).
211
-
212
- <!-- :fire: Nov 24: pyautogen [v0.2](https://github.com/ag2ai/ag2/releases/tag/v0.2.0) is released with many updates and new features compared to v0.1.1. It switches to using openai-python v1. Please read the [migration guide](https://ag2ai.github.io/ag2/docs/Installation#python). -->
213
-
214
- <!-- :fire: Nov 11: OpenAI's Assistants are available in AutoGen and interoperatable with other AutoGen agents! Checkout our [blogpost](https://ag2ai.github.io/ag2/blog/2023/11/13/OAI-assistants) for details and examples. -->
215
-
216
- :tada: Nov 8, 2023: AutoGen is selected into [Open100: Top 100 Open Source achievements](https://www.benchcouncil.org/evaluation/opencs/annual.html) 35 days after spinoff from [FLAML](https://github.com/microsoft/FLAML).
217
-
218
- <!-- :tada: Nov 6, 2023: AutoGen is mentioned by Satya Nadella in a [fireside chat](https://youtu.be/0pLBvgYtv6U). -->
219
-
220
- <!-- :tada: Nov 1, 2023: AutoGen is the top trending repo on GitHub in October 2023. -->
221
-
222
- <!-- :tada: Oct 03, 2023: AutoGen spins off from [FLAML](https://github.com/microsoft/FLAML) on GitHub. -->
223
-
224
- <!-- :tada: Aug 16: Paper about AutoGen on [arxiv](https://arxiv.org/abs/2308.08155). -->
225
-
226
- :tada: Mar 29, 2023: AutoGen is first created in [FLAML](https://github.com/microsoft/FLAML).
227
-
228
- <!--
229
- :fire: FLAML is highlighted in OpenAI's [cookbook](https://github.com/openai/openai-cookbook#related-resources-from-around-the-web).
230
-
231
- :fire: [autogen](https://ag2ai.github.io/ag2/) is released with support for ChatGPT and GPT-4, based on [Cost-Effective Hyperparameter Optimization for Large Language Model Generation Inference](https://arxiv.org/abs/2303.04673).
232
-
233
- :fire: FLAML supports Code-First AutoML & Tuning – Private Preview in [Microsoft Fabric Data Science](https://learn.microsoft.com/en-us/fabric/data-science/). -->
234
-
235
- ## What is AG2
236
-
237
- AG2 (formerly AutoGen) is an open-source programming framework for building AI agents and facilitating cooperation among multiple agents to solve tasks. AG2 aims to streamline the development and research of agentic AI, much like PyTorch does for Deep Learning. It offers features such as agents capable of interacting with each other, facilitates the use of various large language models (LLMs) and tool use support, autonomous and human-in-the-loop workflows, and multi-agent conversation patterns.
238
-
239
- **Open Source Statement**: The project welcomes contributions from developers and organizations worldwide. Our goal is to foster a collaborative and inclusive community where diverse perspectives and expertise can drive innovation and enhance the project's capabilities. Whether you are an individual contributor or represent an organization, we invite you to join us in shaping the future of this project. Together, we can build something truly remarkable.
240
-
241
- The project is currently maintained by a [dynamic group of volunteers](MAINTAINERS.md) from several organizations. Contact project administrators Chi Wang and Qingyun Wu via [support@ag2.ai](mailto:support@ag2.ai) if you are interested in becoming a maintainer.
242
-
243
-
244
- ![AutoGen Overview](./website/static/img/autogen_agentchat.png)
245
-
246
-
247
-
248
- <p align="right" style="font-size: 14px; color: #555; margin-top: 20px;">
249
- <a href="#readme-top" style="text-decoration: none; color: blue; font-weight: bold;">
250
- ↑ Back to Top ↑
251
- </a>
252
- </p>
253
-
254
- <!--
255
- ## Roadmaps
256
- -->
257
-
258
- ## Quickstart
259
- The easiest way to start playing is
260
- 1. Click below to use the GitHub Codespace
261
-
262
- [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/ag2ai/ag2?quickstart=1)
263
-
264
- 2. Copy OAI_CONFIG_LIST_sample to ./notebook folder, name to OAI_CONFIG_LIST, and set the correct configuration.
265
- 3. Start playing with the notebooks!
266
-
267
- *NOTE*: OAI_CONFIG_LIST_sample lists gpt-4o as the default model. If you use a different model, you may need to revise various system prompts (especially if using weaker models like gpt-4o-mini). Proceed with caution when updating this default and be aware of additional risks related to alignment and safety.
268
-
269
- <p align="right" style="font-size: 14px; color: #555; margin-top: 20px;">
270
- <a href="#readme-top" style="text-decoration: none; color: blue; font-weight: bold;">
271
- ↑ Back to Top ↑
272
- </a>
273
- </p>
274
-
275
- ## [Installation](https://ag2ai.github.io/ag2/docs/Installation)
276
-
277
- ### Option 1. Install and Run AG2 in Docker
278
-
279
- Find detailed instructions for users [here](https://ag2ai.github.io/ag2/docs/installation/Docker#step-1-install-docker), and for developers [here](https://ag2ai.github.io/ag2/docs/Contribute#docker-for-development).
280
-
281
- ### Option 2. Install AG2 Locally
282
-
283
- AG2 requires **Python version >= 3.8, < 3.14**. It can be installed from pip:
284
-
285
- ```bash
286
- pip install ag2
287
- ```
288
-
289
- Minimal dependencies are installed without extra options. You can install extra options based on the feature you need.
290
-
291
- <!-- For example, use the following to install the dependencies needed by the [`blendsearch`](https://microsoft.github.io/FLAML/docs/Use-Cases/Tune-User-Defined-Function#blendsearch-economical-hyperparameter-optimization-with-blended-search-strategy) option.
292
- ```bash
293
- pip install "autogen[blendsearch]"
294
- ``` -->
295
-
296
- Find more options in [Installation](https://ag2ai.github.io/ag2/docs/Installation#option-2-install-autogen-locally-using-virtual-environment).
297
-
298
- <!-- Each of the [`notebook examples`](https://github.com/ag2ai/ag2/tree/main/notebook) may require a specific option to be installed. -->
299
-
300
- Even if you are installing and running AG2 locally outside of docker, the recommendation and default behavior of agents is to perform [code execution](https://ag2ai.github.io/ag2/docs/FAQ/#code-execution) in docker. Find more instructions and how to change the default behaviour [here](https://ag2ai.github.io/ag2/docs/Installation#code-execution-with-docker-(default)).
301
-
302
- For LLM inference configurations, check the [FAQs](https://ag2ai.github.io/ag2/docs/FAQ#set-your-api-endpoints).
303
-
304
- <p align="right" style="font-size: 14px; color: #555; margin-top: 20px;">
305
- <a href="#readme-top" style="text-decoration: none; color: blue; font-weight: bold;">
306
- ↑ Back to Top ↑
307
- </a>
308
- </p>
309
-
310
- ## Multi-Agent Conversation Framework
311
-
312
- AG2 enables the next-gen LLM applications with a generic [multi-agent conversation](https://ag2ai.github.io/ag2/docs/Use-Cases/agent_chat) framework. It offers customizable and conversable agents that integrate LLMs, tools, and humans.
313
- By automating chat among multiple capable agents, one can easily make them collectively perform tasks autonomously or with human feedback, including tasks that require using tools via code.
314
-
315
- Features of this use case include:
316
-
317
- - **Multi-agent conversations**: AG2 agents can communicate with each other to solve tasks. This allows for more complex and sophisticated applications than would be possible with a single LLM.
318
- - **Customization**: AG2 agents can be customized to meet the specific needs of an application. This includes the ability to choose the LLMs to use, the types of human input to allow, and the tools to employ.
319
- - **Human participation**: AG2 seamlessly allows human participation. This means that humans can provide input and feedback to the agents as needed.
320
-
321
- For [example](https://github.com/ag2ai/ag2/blob/main/test/twoagent.py),
322
-
323
- ```python
324
- from autogen import AssistantAgent, UserProxyAgent, config_list_from_json
325
- # Load LLM inference endpoints from an env variable or a file
326
- # See https://ag2ai.github.io/ag2/docs/FAQ#set-your-api-endpoints
327
- # and OAI_CONFIG_LIST_sample
328
- config_list = config_list_from_json(env_or_file="OAI_CONFIG_LIST")
329
- # You can also set config_list directly as a list, for example, config_list = [{'model': 'gpt-4o', 'api_key': '<your OpenAI API key here>'},]
330
- assistant = AssistantAgent("assistant", llm_config={"config_list": config_list})
331
- user_proxy = UserProxyAgent("user_proxy", code_execution_config={"work_dir": "coding", "use_docker": False}) # IMPORTANT: set to True to run code in docker, recommended
332
- user_proxy.initiate_chat(assistant, message="Plot a chart of NVDA and TESLA stock price change YTD.")
333
- # This initiates an automated chat between the two agents to solve the task
334
- ```
335
-
336
- This example can be run with
337
-
338
- ```python
339
- python test/twoagent.py
340
- ```
341
-
342
- After the repo is cloned.
343
- The figure below shows an example conversation flow with AG2.
344
-
345
- ![Agent Chat Example](./website/static/img/chat_example.png)
346
-
347
-
348
- Alternatively, the [sample code](https://github.com/ag2ai/build-with-ag2/blob/main/samples/simple_chat.py) here allows a user to chat with an AG2 agent in ChatGPT style.
349
- Please find more [code examples](https://ag2ai.github.io/ag2/docs/Examples#automated-multi-agent-chat) for this feature.
350
-
351
- <p align="right" style="font-size: 14px; color: #555; margin-top: 20px;">
352
- <a href="#readme-top" style="text-decoration: none; color: blue; font-weight: bold;">
353
- ↑ Back to Top ↑
354
- </a>
355
- </p>
356
-
357
- ## Enhanced LLM Inferences
358
-
359
- AG2 also helps maximize the utility out of the expensive LLMs such as gpt-4o. It offers [enhanced LLM inference](https://ag2ai.github.io/ag2/docs/Use-Cases/enhanced_inference#api-unification) with powerful functionalities like caching, error handling, multi-config inference and templating.
360
-
361
- <!-- For example, you can optimize generations by LLM with your own tuning data, success metrics, and budgets.
362
-
363
- ```python
364
- # perform tuning for openai<1
365
- config, analysis = autogen.Completion.tune(
366
- data=tune_data,
367
- metric="success",
368
- mode="max",
369
- eval_func=eval_func,
370
- inference_budget=0.05,
371
- optimization_budget=3,
372
- num_samples=-1,
373
- )
374
- # perform inference for a test instance
375
- response = autogen.Completion.create(context=test_instance, **config)
376
- ```
377
-
378
- Please find more [code examples](https://ag2ai.github.io/ag2/docs/Examples#tune-gpt-models) for this feature. -->
379
-
380
- <p align="right" style="font-size: 14px; color: #555; margin-top: 20px;">
381
- <a href="#readme-top" style="text-decoration: none; color: blue; font-weight: bold;">
382
- ↑ Back to Top ↑
383
- </a>
384
- </p>
385
-
386
- ## Documentation
387
-
388
- You can find detailed documentation about AG2 [here](https://ag2ai.github.io/ag2/).
389
-
390
- In addition, you can find:
391
-
392
- - [Research](https://ag2ai.github.io/ag2/docs/Research), [blogposts](https://ag2ai.github.io/ag2/blog) around AG2, and [Transparency FAQs](https://github.com/ag2ai/ag2/blob/main/TRANSPARENCY_FAQS.md)
393
-
394
- - [Discord](https://discord.gg/pAbnFJrkgZ)
395
-
396
- - [Contributing guide](https://ag2ai.github.io/ag2/docs/Contribute)
397
-
398
- <p align="right" style="font-size: 14px; color: #555; margin-top: 20px;">
399
- <a href="#readme-top" style="text-decoration: none; color: blue; font-weight: bold;">
400
- ↑ Back to Top ↑
401
- </a>
402
- </p>
403
-
404
- ## CookBook
405
-
406
- Explore detailed implementations with sample code and applications to help you get started with AG2.
407
- [Cookbook](https://github.com/ag2ai/build-with-ag2)
408
-
409
-
410
- ## Related Papers
411
-
412
- [AutoGen](https://arxiv.org/abs/2308.08155)
413
-
414
- ```
415
- @inproceedings{wu2023autogen,
416
- title={AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation Framework},
417
- author={Qingyun Wu and Gagan Bansal and Jieyu Zhang and Yiran Wu and Beibin Li and Erkang Zhu and Li Jiang and Xiaoyun Zhang and Shaokun Zhang and Jiale Liu and Ahmed Hassan Awadallah and Ryen W White and Doug Burger and Chi Wang},
418
- year={2023},
419
- eprint={2308.08155},
420
- archivePrefix={arXiv},
421
- primaryClass={cs.AI}
422
- }
423
- ```
424
-
425
- [EcoOptiGen](https://arxiv.org/abs/2303.04673)
426
-
427
- ```
428
- @inproceedings{wang2023EcoOptiGen,
429
- title={Cost-Effective Hyperparameter Optimization for Large Language Model Generation Inference},
430
- author={Chi Wang and Susan Xueqing Liu and Ahmed H. Awadallah},
431
- year={2023},
432
- booktitle={AutoML'23},
433
- }
434
- ```
435
-
436
- [MathChat](https://arxiv.org/abs/2306.01337)
437
-
438
- ```
439
- @inproceedings{wu2023empirical,
440
- title={An Empirical Study on Challenging Math Problem Solving with GPT-4},
441
- author={Yiran Wu and Feiran Jia and Shaokun Zhang and Hangyu Li and Erkang Zhu and Yue Wang and Yin Tat Lee and Richard Peng and Qingyun Wu and Chi Wang},
442
- year={2023},
443
- booktitle={ArXiv preprint arXiv:2306.01337},
444
- }
445
- ```
446
-
447
- [AgentOptimizer](https://arxiv.org/pdf/2402.11359)
448
-
449
- ```
450
- @article{zhang2024training,
451
- title={Training Language Model Agents without Modifying Language Models},
452
- author={Zhang, Shaokun and Zhang, Jieyu and Liu, Jiale and Song, Linxin and Wang, Chi and Krishna, Ranjay and Wu, Qingyun},
453
- journal={ICML'24},
454
- year={2024}
455
- }
456
- ```
457
-
458
- [StateFlow](https://arxiv.org/abs/2403.11322)
459
- ```
460
- @article{wu2024stateflow,
461
- title={StateFlow: Enhancing LLM Task-Solving through State-Driven Workflows},
462
- author={Wu, Yiran and Yue, Tianwei and Zhang, Shaokun and Wang, Chi and Wu, Qingyun},
463
- journal={arXiv preprint arXiv:2403.11322},
464
- year={2024}
465
- }
466
- ```
467
-
468
- <p align="right" style="font-size: 14px; color: #555; margin-top: 20px;">
469
- <a href="#readme-top" style="text-decoration: none; color: blue; font-weight: bold;">
470
- ↑ Back to Top ↑
471
- </a>
472
- </p>
473
-
474
- ## Contributors Wall
475
- <a href="https://github.com/ag2ai/ag2/graphs/contributors">
476
- <img src="https://contrib.rocks/image?repo=ag2ai/ag2&max=204" />
477
- </a>
478
-
479
- <p align="right" style="font-size: 14px; color: #555; margin-top: 20px;">
480
- <a href="#readme-top" style="text-decoration: none; color: blue; font-weight: bold;">
481
- ↑ Back to Top ↑
482
- </a>
483
- </p>
484
-
485
- ## License
486
- This project is licensed under the [Apache License, Version 2.0 (Apache-2.0)](./LICENSE).
487
-
488
- This project is a spin-off of [AutoGen](https://github.com/microsoft/autogen) and contains code under two licenses:
489
-
490
- - The original code from https://github.com/microsoft/autogen is licensed under the MIT License. See the [LICENSE_original_MIT](./license_original/LICENSE_original_MIT) file for details.
491
-
492
- - Modifications and additions made in this fork are licensed under the Apache License, Version 2.0. See the [LICENSE](./LICENSE) file for the full license text.
493
-
494
- We have documented these changes for clarity and to ensure transparency with our user and contributor community. For more details, please see the [NOTICE](./NOTICE.md) file.
495
-
496
-
@@ -1,115 +0,0 @@
1
- autogen/__init__.py,sha256=eNsTdCkF0qnFdptTUXK9T7Vx7SbUVjvIt3ryRdsyCL4,491
2
- autogen/_pydantic.py,sha256=HRc_pCb9puuh4uOyVzeJPNm__XSYbLQ26Gnc5xXgQU8,3409
3
- autogen/browser_utils.py,sha256=DiDUvsiSkTFItU_tOqTQAbeg3E8Br9SX2cd2P-zOipM,11939
4
- autogen/code_utils.py,sha256=NS2QrVxpVQo2e5QNndXy6mRmtfv_zHs4ZHl-MMib4z4,29835
5
- autogen/exception_utils.py,sha256=WEdeVlc_otHXgWQZ-lqaHdezXdrl3Q4M-qfpBv4eiE0,1581
6
- autogen/formatting_utils.py,sha256=lhNmim0G6Vmlrz6D-ra6u0YRt7wP98nSGubRYJ3717Q,1913
7
- autogen/function_utils.py,sha256=6wTb2LxTzGveMk360JerU9l7hA497alMet8q2o9BqDo,12245
8
- autogen/graph_utils.py,sha256=Bszgh51Pdpuc2o05IX6aa7uCD_p1BCqYVaipozStQlE,6416
9
- autogen/math_utils.py,sha256=gXgTqhT1BssQ4EjPPd9tXlHgKuftuSu5DYW-lxgMx4s,10274
10
- autogen/retrieve_utils.py,sha256=CndQ0lr7dsRGLltudqp-O_dC_4NgO6fmhzka8iXLa-g,19600
11
- autogen/runtime_logging.py,sha256=iAJO_oddNfItIghNlTv060Ld0NybK52SzL7qu3n0vRw,4837
12
- autogen/token_count_utils.py,sha256=z9HMEYf9DWr3IJah-PyzIwU_vr64_NF_6U0WCFI1L7s,10240
13
- autogen/types.py,sha256=zkSwYEfDePIsuk03IgutDPwb1QlFK-rAu23uYvQKrXE,601
14
- autogen/version.py,sha256=4LnAqSTAUIszZcTSEdMLr0I4xotjCK6n6PWKmBUHhWY,248
15
- autogen/agentchat/__init__.py,sha256=GhEKIablUdEaWlW8i7VpHwtzIVOl6N9sgbnAcT-X9jw,1091
16
- autogen/agentchat/agent.py,sha256=r3jjZbVGkms4a8FTOXzyiQQ7PcMPVBj8zwbSJ-siwXg,4764
17
- autogen/agentchat/assistant_agent.py,sha256=cEaYk15yyeRSE3LaguDThxzZFgTWiPJ1SxTvAvK6t68,5548
18
- autogen/agentchat/chat.py,sha256=F7WNQc_feDg0pXwkqG0ER74jy_zRzj6NO7MVNwEQcPM,12484
19
- autogen/agentchat/conversable_agent.py,sha256=T-lnzd8BVTvgujjRsUJ1N1KrLo2ojQ7HG6l-CCnEVAA,139387
20
- autogen/agentchat/groupchat.py,sha256=2kzT4nf_Yexuq8YqcmJSX9TA2QoTv9yZXZ8W5Q3NpA8,83877
21
- autogen/agentchat/user_proxy_agent.py,sha256=c-RG-Sb_O3p3QnePkOVepVI5olyfKOlsM9SQaEOcthw,7307
22
- autogen/agentchat/utils.py,sha256=Y-FjMcwiJuO-WsgLDuXep_IU2absAMwQulCKs9QdHVc,8036
23
- autogen/agentchat/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- autogen/agentchat/contrib/agent_builder.py,sha256=z08C5-zpAXqKliX0vSdhphHr1w43YqENjYK6uhjKYdY,32699
25
- autogen/agentchat/contrib/agent_optimizer.py,sha256=dSsRIcYwZXxTWIGn_0gUl-zvDnWgOSQKyImzmkE6UPQ,22446
26
- autogen/agentchat/contrib/captainagent.py,sha256=ir079N3lk_xphZjrus8WZntZT2maCuJUj7anRbKaOkU,25500
27
- autogen/agentchat/contrib/gpt_assistant_agent.py,sha256=5aNsw8HJQKw5KumHRZekT2smnHR9e4PLRvIZzfsNPQw,25146
28
- autogen/agentchat/contrib/img_utils.py,sha256=XEnLKeWOXoD1IiWf8IT1A3QiUE8ZEdZrjxUaJwR1WVY,14276
29
- autogen/agentchat/contrib/llamaindex_conversable_agent.py,sha256=BSfjG4fDXjG4jpBmyAso5k1dK8JJPYWoNuL4LiYl-EM,4535
30
- autogen/agentchat/contrib/llava_agent.py,sha256=pVKcwa_16Pg6lBfGJ6JXWUH-nAUtgW05q6KdhDESass,6330
31
- autogen/agentchat/contrib/math_user_proxy_agent.py,sha256=Q6YI8Z3M4Ndcp8ruMtpEr16rxLi4ZnIKKnYD8ujv33I,19938
32
- autogen/agentchat/contrib/multimodal_conversable_agent.py,sha256=vDYP6c3K1L6HaefG4gItGvlrbAa91KERJQTKZlMpe2c,5155
33
- autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py,sha256=mgKHvKbx5dcTRMlE4yg6K6DMmfVWuIxncNHdf987Ct4,19406
34
- autogen/agentchat/contrib/retrieve_assistant_agent.py,sha256=79igEA0r1eZYSuWKOCKkUwCV1c5yTWH295-L2-4ao4c,2424
35
- autogen/agentchat/contrib/retrieve_user_proxy_agent.py,sha256=kDEQ_HJ5nvbBmsCf-oyCnZGxzv3R0VawoLHKuNz5v4c,37069
36
- autogen/agentchat/contrib/society_of_mind_agent.py,sha256=lRF69C8ejcqPRGj5_fPtUs2NandyATw010OJB7OTdos,9087
37
- autogen/agentchat/contrib/swarm_agent.py,sha256=qeBV6XoBPdEGbJgSf2ZmpFEuDKmE1etee9X7hJNV7Bs,17032
38
- autogen/agentchat/contrib/text_analyzer_agent.py,sha256=WitXX--yoGh3Xq_jC_D85Unt7UCVPdhM4MzuVJxiRSg,3563
39
- autogen/agentchat/contrib/tool_retriever.py,sha256=WIOTdHOWR-JRscw9RJBRAuuSYqV97nhUhGw3yQ0J8sg,4304
40
- autogen/agentchat/contrib/web_surfer.py,sha256=kAqbfuyj_lK61VUhvVUM83CYs_Hsut6eKPy388LVwL8,14563
41
- autogen/agentchat/contrib/capabilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- autogen/agentchat/contrib/capabilities/agent_capability.py,sha256=f6cBV4FcMvA7oZE1_o42RUUayC3KTkKOB7wW2fFEjso,771
43
- autogen/agentchat/contrib/capabilities/generate_images.py,sha256=B0n9bSNovYLcSMSYwtYAwOMnx77y52jucQtGZ4RbA60,12627
44
- autogen/agentchat/contrib/capabilities/teachability.py,sha256=6PUVPC-rCGH6D0r-xEzyXTAm8-OqjftvZFL8wmcpJ6U,19501
45
- autogen/agentchat/contrib/capabilities/text_compressors.py,sha256=xKQwv268AVZYKK-RdZMhNyjabT-6y-lJ7a1jxepFs4Q,3080
46
- autogen/agentchat/contrib/capabilities/transform_messages.py,sha256=RdzTnmlRS5aXA8dtxQky3P4rVlveU1aibeH40sXoKKQ,3708
47
- autogen/agentchat/contrib/capabilities/transforms.py,sha256=4a1Gb_8ol48l-g0B7V9Mqful6A9gCizSRayhR_HudwY,25637
48
- autogen/agentchat/contrib/capabilities/transforms_util.py,sha256=-OnVwZeHhmJhV-FkiOODpsAU8-gZkcJSwJMpctOyz8Y,4441
49
- autogen/agentchat/contrib/capabilities/vision_capability.py,sha256=XzKKLXOffNWAowgF0f2CS050fdRvVWT0ce7F68T1q5I,10058
50
- autogen/agentchat/contrib/graph_rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- autogen/agentchat/contrib/graph_rag/document.py,sha256=yUR0_i9h5XaTiMLvV7--gjaUM9YOUB5N2LkK5-HXC5o,413
52
- autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py,sha256=0qmPapOsj4qim2QYAgOqdH6HB5MzPrOcQpdL2AocLoc,2695
53
- autogen/agentchat/contrib/graph_rag/graph_query_engine.py,sha256=FnVJkKFopMvsqo-7YShaFQGGQ4tDbBVZIwb5me1g2DE,1537
54
- autogen/agentchat/contrib/graph_rag/graph_rag_capability.py,sha256=0aqzxxmtRduy9fXCutIeHICZMphijOnMInOdadAfWEE,1997
55
- autogen/agentchat/contrib/vectordb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
- autogen/agentchat/contrib/vectordb/base.py,sha256=50MchILyOfBHPuBg1G1nM2vIuzKfoQKssCXKvbMKruU,9151
57
- autogen/agentchat/contrib/vectordb/chromadb.py,sha256=2dFVBd_Icj_GJ4XOVC5D4LYNFXtzoDmXux-WuTW7EDw,13480
58
- autogen/agentchat/contrib/vectordb/mongodb.py,sha256=iD7ayIrTZ9V3xV0nOOWpQ3U8GWDDmVMB8wW_o5CKEtY,23192
59
- autogen/agentchat/contrib/vectordb/pgvectordb.py,sha256=RxTvZciJkT1oty4CFer-gVvGX0sRHp_xFgQPh0de6HM,39240
60
- autogen/agentchat/contrib/vectordb/qdrant.py,sha256=SVho_uZPfPjFamz2raPudx-wFOx1wNCf90UvK_TozcI,13823
61
- autogen/agentchat/contrib/vectordb/utils.py,sha256=skh86LXkbW5owCehkj887D7cIMxgT35Mk4vu75SWFIc,4435
62
- autogen/cache/__init__.py,sha256=uXnBVq_fGjRt5ypTrTtUuZ1KKFKOqR2iOiT27G0Az28,336
63
- autogen/cache/abstract_cache_base.py,sha256=lIx9XeFhgNGRrsC4ferOUmGxskyMBu1wC6KTvbjO9j8,2388
64
- autogen/cache/cache.py,sha256=BH3892nm3DO4q0HIDLNh--zp6vfefmyOqULJZmmRq8s,6408
65
- autogen/cache/cache_factory.py,sha256=xmTCC_GY2gc3MmxNzjzrH-V2vbsHYNoQwoAr6ifSQ08,3038
66
- autogen/cache/cosmos_db_cache.py,sha256=9BlJc3hmyAB16leb9MAfgnpX58eOpRadlh1P4FzRdzA,5797
67
- autogen/cache/disk_cache.py,sha256=fHWga6HmMBLvI9o8Et3vIgeqsEdKCNaHSXgrw0rSot8,3357
68
- autogen/cache/in_memory_cache.py,sha256=CXd8TRcCh4vOTgvLqUPKnQfN8fCEQJib5aR4RxZWBu4,1849
69
- autogen/cache/redis_cache.py,sha256=r6vzXbU8nZkqErcB0KiEI7v7D8icpuBq7ZM9oxnHFdA,4137
70
- autogen/coding/__init__.py,sha256=bbs19EUNBaAcISEavwfJssKS-_QIfNcTWKkM9u3wSTU,791
71
- autogen/coding/base.py,sha256=UN7AnCtAAqkrMSAfwN-PKh9u7wMPSmSRvPdb5nQh8Hk,3594
72
- autogen/coding/docker_commandline_code_executor.py,sha256=Yv4hL-VEC8VPt9smUfDTbSTbB3ONeptKlPtpZJsnAmI,9600
73
- autogen/coding/factory.py,sha256=u-OzGT2i04IOlC38XHEp4tVaQ4UCuzyQ7S5O0eyH02Q,1895
74
- autogen/coding/func_with_reqs.py,sha256=OXIftScn08abW6IxMA1_qCWw2w27x25J4mYn3HVqhOA,6399
75
- autogen/coding/local_commandline_code_executor.py,sha256=ZdYVFeIK-PmRdxs7jqZwX9unj7QSnuDAmU7x2HxJhbo,16748
76
- autogen/coding/markdown_code_extractor.py,sha256=_H6B93Y5CbC5artw6G7TcZGi_imJAKSQIajJb7s98ns,1595
77
- autogen/coding/utils.py,sha256=0TL1wYSShRtQvkgi8o_M1_CaBpxVdyEGv0QVttdn-gY,2110
78
- autogen/coding/jupyter/__init__.py,sha256=FfaEWT1EUW2l44rjmDDQmj60W76H-jIHmVSP1ZdouFc,795
79
- autogen/coding/jupyter/base.py,sha256=aQIYeL4PRE0awiUGfvDA_RO9UU00gs2aSlZVLMelY6w,1015
80
- autogen/coding/jupyter/docker_jupyter_server.py,sha256=or17u84l4NacCPEk_isLTUnCigdouvUFtgyqPBuGT5Y,5695
81
- autogen/coding/jupyter/embedded_ipython_code_executor.py,sha256=2DWAIYLjZGVrYP1AUopW14AKXqNwL3PwlcaMGLwrK-0,8088
82
- autogen/coding/jupyter/jupyter_client.py,sha256=8kIHjh2kD5Wh6Ci9uj8r3eq8qSdyZI-eqo4iZPy74II,8296
83
- autogen/coding/jupyter/jupyter_code_executor.py,sha256=0CVu18Uw2A3uUujCWxBkrxTKVzLRC41FNvTLuNiWXH8,6376
84
- autogen/coding/jupyter/local_jupyter_server.py,sha256=no8lLzm-3U2qwhlBDq4YqM7tDULCq8ANsHhsoCqZ934,6404
85
- autogen/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
- autogen/io/__init__.py,sha256=LARrer2Vn88okcf-EBq5zn6vAHt9yAs2rh3cl1_HdMM,561
87
- autogen/io/base.py,sha256=xIK9vTat6HHcwMndGNFcY17B3y62C8bRTk3tezf7A_w,3425
88
- autogen/io/console.py,sha256=lYzBsy7VWTsTP0Evxsd6tarVYR1v8btjItoCRxe3vg4,1407
89
- autogen/io/websockets.py,sha256=qK2DLDTx5rGtuhsRPpV-xleuLCBy4Oorpc5WggKHcf4,7264
90
- autogen/logger/__init__.py,sha256=1aNIdfAhzJjf8qJSqsgCCEbZcBGIcJdiXbS1G6iMns8,403
91
- autogen/logger/base_logger.py,sha256=boarsJGfgD_vZYqDROsHyauouQaLdeQkP9xMfJEMWWo,5159
92
- autogen/logger/file_logger.py,sha256=faApnlfmJ42x0JD5JDmOsBpNxMqwZY9HMJh6LGXMKYg,10402
93
- autogen/logger/logger_factory.py,sha256=RNr12g2pPTeBEJzeYrbp3KWeJxpZnEGvlufYiFeyq8A,941
94
- autogen/logger/logger_utils.py,sha256=-P3_YWBEFsTF8MgQ9oc5AqLb6fSdjDJZ8FOg5hs8oMM,1436
95
- autogen/logger/sqlite_logger.py,sha256=vkZtYLWKKGDHh0GCTbp_4PWBl9-yjhzii1cnQ7-lQkQ,16430
96
- autogen/oai/__init__.py,sha256=6HF5dNTEgwi-rM-A273XtVBSyvkIsKtNpccsoNXWdqY,911
97
- autogen/oai/anthropic.py,sha256=ibeH8-NLfeNDKpGdjJbh9dPoUWJGzBszguKaWzJJLzs,17249
98
- autogen/oai/bedrock.py,sha256=oTd7qWw3zfMhYLA2QUGoOiPNeA1hDG7ooaA-iqavRfI,23562
99
- autogen/oai/cerebras.py,sha256=7TrdvplPx5ATbFwSIvwqg_8Xmzkjsi2Hr9Q60w5uyZk,10669
100
- autogen/oai/client.py,sha256=HR8ATrTlNoSM8fr0fH9cmKR-lxr3Rd62kBI0aj-eoNg,52615
101
- autogen/oai/client_utils.py,sha256=W9RD6V3XPpelDqPwjG412go4qXfYWDPmKur68s-Siu0,7282
102
- autogen/oai/cohere.py,sha256=giMIRomeAEd3y0QsulmWYYLXXCfsqY0ojKG4UzwQ2SI,18513
103
- autogen/oai/completion.py,sha256=dT2LEjmRUMXx0UR7OKs6zYQH-cDtW5m0vWvwXXOjmvk,53652
104
- autogen/oai/gemini.py,sha256=YNrwGKwPVglfUhx2XPph9AbPN0b5IbPMaT0njWPEXjI,20595
105
- autogen/oai/groq.py,sha256=gpLe1UJZMtkJAks2mj40aksvMcQ0oBjgOxRuTVupG7s,11164
106
- autogen/oai/mistral.py,sha256=1xybwfihh6n2HyLlCNNebT01SYVIwNj9ClIms92ySak,11414
107
- autogen/oai/ollama.py,sha256=lKGvNdVoNhpvssYu-shrNPcMHczBX1kVktZe77c9zz0,25383
108
- autogen/oai/openai_utils.py,sha256=zZU1GFZsqy_dEYvt5UbCfRPh_i3nIFvGVnmF3kbTUvU,35162
109
- autogen/oai/together.py,sha256=AfEx2Dt4limeVvnCibtwvs9OuJkS1wcYFdA-P-gDzRw,13411
110
- ag2-0.4b1.dist-info/LICENSE,sha256=GEFQVNayAR-S_rQD5l8hPdgvgyktVdy4Bx5-v90IfRI,11384
111
- ag2-0.4b1.dist-info/METADATA,sha256=gGFTLvAIcn8UdRmqt52Z4lhmstqgjjK-AHXUMfNT6Gw,24897
112
- ag2-0.4b1.dist-info/NOTICE.md,sha256=ucvou1bE6i2s40qyuU9RL0TeIVG01VhXoQ59EngtEz4,1317
113
- ag2-0.4b1.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
114
- ag2-0.4b1.dist-info/top_level.txt,sha256=qRZ2MW8yuy0LtOLpeZndl4H1buusjxhwD6c9AXbVqKQ,8
115
- ag2-0.4b1.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- autogen