ag2 0.10.2__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.
Files changed (423) hide show
  1. ag2-0.10.2.dist-info/METADATA +819 -0
  2. ag2-0.10.2.dist-info/RECORD +423 -0
  3. ag2-0.10.2.dist-info/WHEEL +4 -0
  4. ag2-0.10.2.dist-info/licenses/LICENSE +201 -0
  5. ag2-0.10.2.dist-info/licenses/NOTICE.md +19 -0
  6. autogen/__init__.py +88 -0
  7. autogen/_website/__init__.py +3 -0
  8. autogen/_website/generate_api_references.py +426 -0
  9. autogen/_website/generate_mkdocs.py +1216 -0
  10. autogen/_website/notebook_processor.py +475 -0
  11. autogen/_website/process_notebooks.py +656 -0
  12. autogen/_website/utils.py +413 -0
  13. autogen/a2a/__init__.py +36 -0
  14. autogen/a2a/agent_executor.py +86 -0
  15. autogen/a2a/client.py +357 -0
  16. autogen/a2a/errors.py +18 -0
  17. autogen/a2a/httpx_client_factory.py +79 -0
  18. autogen/a2a/server.py +221 -0
  19. autogen/a2a/utils.py +207 -0
  20. autogen/agentchat/__init__.py +47 -0
  21. autogen/agentchat/agent.py +180 -0
  22. autogen/agentchat/assistant_agent.py +86 -0
  23. autogen/agentchat/chat.py +325 -0
  24. autogen/agentchat/contrib/__init__.py +5 -0
  25. autogen/agentchat/contrib/agent_eval/README.md +7 -0
  26. autogen/agentchat/contrib/agent_eval/agent_eval.py +108 -0
  27. autogen/agentchat/contrib/agent_eval/criterion.py +43 -0
  28. autogen/agentchat/contrib/agent_eval/critic_agent.py +44 -0
  29. autogen/agentchat/contrib/agent_eval/quantifier_agent.py +39 -0
  30. autogen/agentchat/contrib/agent_eval/subcritic_agent.py +45 -0
  31. autogen/agentchat/contrib/agent_eval/task.py +42 -0
  32. autogen/agentchat/contrib/agent_optimizer.py +432 -0
  33. autogen/agentchat/contrib/capabilities/__init__.py +5 -0
  34. autogen/agentchat/contrib/capabilities/agent_capability.py +20 -0
  35. autogen/agentchat/contrib/capabilities/generate_images.py +301 -0
  36. autogen/agentchat/contrib/capabilities/teachability.py +393 -0
  37. autogen/agentchat/contrib/capabilities/text_compressors.py +66 -0
  38. autogen/agentchat/contrib/capabilities/tools_capability.py +22 -0
  39. autogen/agentchat/contrib/capabilities/transform_messages.py +93 -0
  40. autogen/agentchat/contrib/capabilities/transforms.py +578 -0
  41. autogen/agentchat/contrib/capabilities/transforms_util.py +122 -0
  42. autogen/agentchat/contrib/capabilities/vision_capability.py +215 -0
  43. autogen/agentchat/contrib/captainagent/__init__.py +9 -0
  44. autogen/agentchat/contrib/captainagent/agent_builder.py +790 -0
  45. autogen/agentchat/contrib/captainagent/captainagent.py +514 -0
  46. autogen/agentchat/contrib/captainagent/tool_retriever.py +334 -0
  47. autogen/agentchat/contrib/captainagent/tools/README.md +44 -0
  48. autogen/agentchat/contrib/captainagent/tools/__init__.py +5 -0
  49. autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_correlation.py +40 -0
  50. autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_skewness_and_kurtosis.py +28 -0
  51. autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_iqr.py +28 -0
  52. autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_zscore.py +28 -0
  53. autogen/agentchat/contrib/captainagent/tools/data_analysis/explore_csv.py +21 -0
  54. autogen/agentchat/contrib/captainagent/tools/data_analysis/shapiro_wilk_test.py +30 -0
  55. autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_download.py +27 -0
  56. autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_search.py +53 -0
  57. autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_image.py +53 -0
  58. autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_text.py +38 -0
  59. autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_wikipedia_text.py +21 -0
  60. autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_youtube_caption.py +34 -0
  61. autogen/agentchat/contrib/captainagent/tools/information_retrieval/image_qa.py +60 -0
  62. autogen/agentchat/contrib/captainagent/tools/information_retrieval/optical_character_recognition.py +61 -0
  63. autogen/agentchat/contrib/captainagent/tools/information_retrieval/perform_web_search.py +47 -0
  64. autogen/agentchat/contrib/captainagent/tools/information_retrieval/scrape_wikipedia_tables.py +33 -0
  65. autogen/agentchat/contrib/captainagent/tools/information_retrieval/transcribe_audio_file.py +21 -0
  66. autogen/agentchat/contrib/captainagent/tools/information_retrieval/youtube_download.py +35 -0
  67. autogen/agentchat/contrib/captainagent/tools/math/calculate_circle_area_from_diameter.py +21 -0
  68. autogen/agentchat/contrib/captainagent/tools/math/calculate_day_of_the_week.py +18 -0
  69. autogen/agentchat/contrib/captainagent/tools/math/calculate_fraction_sum.py +28 -0
  70. autogen/agentchat/contrib/captainagent/tools/math/calculate_matrix_power.py +31 -0
  71. autogen/agentchat/contrib/captainagent/tools/math/calculate_reflected_point.py +16 -0
  72. autogen/agentchat/contrib/captainagent/tools/math/complex_numbers_product.py +25 -0
  73. autogen/agentchat/contrib/captainagent/tools/math/compute_currency_conversion.py +23 -0
  74. autogen/agentchat/contrib/captainagent/tools/math/count_distinct_permutations.py +27 -0
  75. autogen/agentchat/contrib/captainagent/tools/math/evaluate_expression.py +28 -0
  76. autogen/agentchat/contrib/captainagent/tools/math/find_continuity_point.py +34 -0
  77. autogen/agentchat/contrib/captainagent/tools/math/fraction_to_mixed_numbers.py +39 -0
  78. autogen/agentchat/contrib/captainagent/tools/math/modular_inverse_sum.py +23 -0
  79. autogen/agentchat/contrib/captainagent/tools/math/simplify_mixed_numbers.py +36 -0
  80. autogen/agentchat/contrib/captainagent/tools/math/sum_of_digit_factorials.py +15 -0
  81. autogen/agentchat/contrib/captainagent/tools/math/sum_of_primes_below.py +15 -0
  82. autogen/agentchat/contrib/captainagent/tools/requirements.txt +10 -0
  83. autogen/agentchat/contrib/captainagent/tools/tool_description.tsv +34 -0
  84. autogen/agentchat/contrib/gpt_assistant_agent.py +526 -0
  85. autogen/agentchat/contrib/graph_rag/__init__.py +9 -0
  86. autogen/agentchat/contrib/graph_rag/document.py +29 -0
  87. autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py +167 -0
  88. autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py +103 -0
  89. autogen/agentchat/contrib/graph_rag/graph_query_engine.py +53 -0
  90. autogen/agentchat/contrib/graph_rag/graph_rag_capability.py +63 -0
  91. autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py +263 -0
  92. autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py +83 -0
  93. autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py +210 -0
  94. autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py +93 -0
  95. autogen/agentchat/contrib/img_utils.py +397 -0
  96. autogen/agentchat/contrib/llamaindex_conversable_agent.py +117 -0
  97. autogen/agentchat/contrib/llava_agent.py +189 -0
  98. autogen/agentchat/contrib/math_user_proxy_agent.py +464 -0
  99. autogen/agentchat/contrib/multimodal_conversable_agent.py +125 -0
  100. autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +325 -0
  101. autogen/agentchat/contrib/rag/__init__.py +10 -0
  102. autogen/agentchat/contrib/rag/chromadb_query_engine.py +268 -0
  103. autogen/agentchat/contrib/rag/llamaindex_query_engine.py +195 -0
  104. autogen/agentchat/contrib/rag/mongodb_query_engine.py +319 -0
  105. autogen/agentchat/contrib/rag/query_engine.py +76 -0
  106. autogen/agentchat/contrib/retrieve_assistant_agent.py +59 -0
  107. autogen/agentchat/contrib/retrieve_user_proxy_agent.py +704 -0
  108. autogen/agentchat/contrib/society_of_mind_agent.py +200 -0
  109. autogen/agentchat/contrib/swarm_agent.py +1404 -0
  110. autogen/agentchat/contrib/text_analyzer_agent.py +79 -0
  111. autogen/agentchat/contrib/vectordb/__init__.py +5 -0
  112. autogen/agentchat/contrib/vectordb/base.py +224 -0
  113. autogen/agentchat/contrib/vectordb/chromadb.py +316 -0
  114. autogen/agentchat/contrib/vectordb/couchbase.py +405 -0
  115. autogen/agentchat/contrib/vectordb/mongodb.py +551 -0
  116. autogen/agentchat/contrib/vectordb/pgvectordb.py +927 -0
  117. autogen/agentchat/contrib/vectordb/qdrant.py +320 -0
  118. autogen/agentchat/contrib/vectordb/utils.py +126 -0
  119. autogen/agentchat/contrib/web_surfer.py +304 -0
  120. autogen/agentchat/conversable_agent.py +4307 -0
  121. autogen/agentchat/group/__init__.py +67 -0
  122. autogen/agentchat/group/available_condition.py +91 -0
  123. autogen/agentchat/group/context_condition.py +77 -0
  124. autogen/agentchat/group/context_expression.py +238 -0
  125. autogen/agentchat/group/context_str.py +39 -0
  126. autogen/agentchat/group/context_variables.py +182 -0
  127. autogen/agentchat/group/events/transition_events.py +111 -0
  128. autogen/agentchat/group/group_tool_executor.py +324 -0
  129. autogen/agentchat/group/group_utils.py +659 -0
  130. autogen/agentchat/group/guardrails.py +179 -0
  131. autogen/agentchat/group/handoffs.py +303 -0
  132. autogen/agentchat/group/llm_condition.py +93 -0
  133. autogen/agentchat/group/multi_agent_chat.py +291 -0
  134. autogen/agentchat/group/on_condition.py +55 -0
  135. autogen/agentchat/group/on_context_condition.py +51 -0
  136. autogen/agentchat/group/patterns/__init__.py +18 -0
  137. autogen/agentchat/group/patterns/auto.py +160 -0
  138. autogen/agentchat/group/patterns/manual.py +177 -0
  139. autogen/agentchat/group/patterns/pattern.py +295 -0
  140. autogen/agentchat/group/patterns/random.py +106 -0
  141. autogen/agentchat/group/patterns/round_robin.py +117 -0
  142. autogen/agentchat/group/reply_result.py +24 -0
  143. autogen/agentchat/group/safeguards/__init__.py +21 -0
  144. autogen/agentchat/group/safeguards/api.py +241 -0
  145. autogen/agentchat/group/safeguards/enforcer.py +1158 -0
  146. autogen/agentchat/group/safeguards/events.py +140 -0
  147. autogen/agentchat/group/safeguards/validator.py +435 -0
  148. autogen/agentchat/group/speaker_selection_result.py +41 -0
  149. autogen/agentchat/group/targets/__init__.py +4 -0
  150. autogen/agentchat/group/targets/function_target.py +245 -0
  151. autogen/agentchat/group/targets/group_chat_target.py +133 -0
  152. autogen/agentchat/group/targets/group_manager_target.py +151 -0
  153. autogen/agentchat/group/targets/transition_target.py +424 -0
  154. autogen/agentchat/group/targets/transition_utils.py +6 -0
  155. autogen/agentchat/groupchat.py +1832 -0
  156. autogen/agentchat/realtime/__init__.py +3 -0
  157. autogen/agentchat/realtime/experimental/__init__.py +20 -0
  158. autogen/agentchat/realtime/experimental/audio_adapters/__init__.py +8 -0
  159. autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py +148 -0
  160. autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py +139 -0
  161. autogen/agentchat/realtime/experimental/audio_observer.py +42 -0
  162. autogen/agentchat/realtime/experimental/clients/__init__.py +15 -0
  163. autogen/agentchat/realtime/experimental/clients/gemini/__init__.py +7 -0
  164. autogen/agentchat/realtime/experimental/clients/gemini/client.py +274 -0
  165. autogen/agentchat/realtime/experimental/clients/oai/__init__.py +8 -0
  166. autogen/agentchat/realtime/experimental/clients/oai/base_client.py +220 -0
  167. autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py +243 -0
  168. autogen/agentchat/realtime/experimental/clients/oai/utils.py +48 -0
  169. autogen/agentchat/realtime/experimental/clients/realtime_client.py +191 -0
  170. autogen/agentchat/realtime/experimental/function_observer.py +84 -0
  171. autogen/agentchat/realtime/experimental/realtime_agent.py +158 -0
  172. autogen/agentchat/realtime/experimental/realtime_events.py +42 -0
  173. autogen/agentchat/realtime/experimental/realtime_observer.py +100 -0
  174. autogen/agentchat/realtime/experimental/realtime_swarm.py +533 -0
  175. autogen/agentchat/realtime/experimental/websockets.py +21 -0
  176. autogen/agentchat/realtime_agent/__init__.py +21 -0
  177. autogen/agentchat/user_proxy_agent.py +114 -0
  178. autogen/agentchat/utils.py +206 -0
  179. autogen/agents/__init__.py +3 -0
  180. autogen/agents/contrib/__init__.py +10 -0
  181. autogen/agents/contrib/time/__init__.py +8 -0
  182. autogen/agents/contrib/time/time_reply_agent.py +74 -0
  183. autogen/agents/contrib/time/time_tool_agent.py +52 -0
  184. autogen/agents/experimental/__init__.py +27 -0
  185. autogen/agents/experimental/deep_research/__init__.py +7 -0
  186. autogen/agents/experimental/deep_research/deep_research.py +52 -0
  187. autogen/agents/experimental/discord/__init__.py +7 -0
  188. autogen/agents/experimental/discord/discord.py +66 -0
  189. autogen/agents/experimental/document_agent/__init__.py +19 -0
  190. autogen/agents/experimental/document_agent/chroma_query_engine.py +301 -0
  191. autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py +113 -0
  192. autogen/agents/experimental/document_agent/document_agent.py +643 -0
  193. autogen/agents/experimental/document_agent/document_conditions.py +50 -0
  194. autogen/agents/experimental/document_agent/document_utils.py +376 -0
  195. autogen/agents/experimental/document_agent/inmemory_query_engine.py +214 -0
  196. autogen/agents/experimental/document_agent/parser_utils.py +134 -0
  197. autogen/agents/experimental/document_agent/url_utils.py +417 -0
  198. autogen/agents/experimental/reasoning/__init__.py +7 -0
  199. autogen/agents/experimental/reasoning/reasoning_agent.py +1178 -0
  200. autogen/agents/experimental/slack/__init__.py +7 -0
  201. autogen/agents/experimental/slack/slack.py +73 -0
  202. autogen/agents/experimental/telegram/__init__.py +7 -0
  203. autogen/agents/experimental/telegram/telegram.py +76 -0
  204. autogen/agents/experimental/websurfer/__init__.py +7 -0
  205. autogen/agents/experimental/websurfer/websurfer.py +70 -0
  206. autogen/agents/experimental/wikipedia/__init__.py +7 -0
  207. autogen/agents/experimental/wikipedia/wikipedia.py +88 -0
  208. autogen/browser_utils.py +309 -0
  209. autogen/cache/__init__.py +10 -0
  210. autogen/cache/abstract_cache_base.py +71 -0
  211. autogen/cache/cache.py +203 -0
  212. autogen/cache/cache_factory.py +88 -0
  213. autogen/cache/cosmos_db_cache.py +144 -0
  214. autogen/cache/disk_cache.py +97 -0
  215. autogen/cache/in_memory_cache.py +54 -0
  216. autogen/cache/redis_cache.py +119 -0
  217. autogen/code_utils.py +598 -0
  218. autogen/coding/__init__.py +30 -0
  219. autogen/coding/base.py +120 -0
  220. autogen/coding/docker_commandline_code_executor.py +283 -0
  221. autogen/coding/factory.py +56 -0
  222. autogen/coding/func_with_reqs.py +203 -0
  223. autogen/coding/jupyter/__init__.py +23 -0
  224. autogen/coding/jupyter/base.py +36 -0
  225. autogen/coding/jupyter/docker_jupyter_server.py +160 -0
  226. autogen/coding/jupyter/embedded_ipython_code_executor.py +182 -0
  227. autogen/coding/jupyter/import_utils.py +82 -0
  228. autogen/coding/jupyter/jupyter_client.py +224 -0
  229. autogen/coding/jupyter/jupyter_code_executor.py +154 -0
  230. autogen/coding/jupyter/local_jupyter_server.py +164 -0
  231. autogen/coding/local_commandline_code_executor.py +341 -0
  232. autogen/coding/markdown_code_extractor.py +44 -0
  233. autogen/coding/utils.py +55 -0
  234. autogen/coding/yepcode_code_executor.py +197 -0
  235. autogen/doc_utils.py +35 -0
  236. autogen/environments/__init__.py +10 -0
  237. autogen/environments/docker_python_environment.py +365 -0
  238. autogen/environments/python_environment.py +125 -0
  239. autogen/environments/system_python_environment.py +85 -0
  240. autogen/environments/venv_python_environment.py +220 -0
  241. autogen/environments/working_directory.py +74 -0
  242. autogen/events/__init__.py +7 -0
  243. autogen/events/agent_events.py +1016 -0
  244. autogen/events/base_event.py +100 -0
  245. autogen/events/client_events.py +168 -0
  246. autogen/events/helpers.py +44 -0
  247. autogen/events/print_event.py +45 -0
  248. autogen/exception_utils.py +73 -0
  249. autogen/extensions/__init__.py +5 -0
  250. autogen/fast_depends/__init__.py +16 -0
  251. autogen/fast_depends/_compat.py +75 -0
  252. autogen/fast_depends/core/__init__.py +14 -0
  253. autogen/fast_depends/core/build.py +206 -0
  254. autogen/fast_depends/core/model.py +527 -0
  255. autogen/fast_depends/dependencies/__init__.py +15 -0
  256. autogen/fast_depends/dependencies/model.py +30 -0
  257. autogen/fast_depends/dependencies/provider.py +40 -0
  258. autogen/fast_depends/library/__init__.py +10 -0
  259. autogen/fast_depends/library/model.py +46 -0
  260. autogen/fast_depends/py.typed +6 -0
  261. autogen/fast_depends/schema.py +66 -0
  262. autogen/fast_depends/use.py +272 -0
  263. autogen/fast_depends/utils.py +177 -0
  264. autogen/formatting_utils.py +83 -0
  265. autogen/function_utils.py +13 -0
  266. autogen/graph_utils.py +173 -0
  267. autogen/import_utils.py +539 -0
  268. autogen/interop/__init__.py +22 -0
  269. autogen/interop/crewai/__init__.py +7 -0
  270. autogen/interop/crewai/crewai.py +88 -0
  271. autogen/interop/interoperability.py +71 -0
  272. autogen/interop/interoperable.py +46 -0
  273. autogen/interop/langchain/__init__.py +8 -0
  274. autogen/interop/langchain/langchain_chat_model_factory.py +156 -0
  275. autogen/interop/langchain/langchain_tool.py +78 -0
  276. autogen/interop/litellm/__init__.py +7 -0
  277. autogen/interop/litellm/litellm_config_factory.py +178 -0
  278. autogen/interop/pydantic_ai/__init__.py +7 -0
  279. autogen/interop/pydantic_ai/pydantic_ai.py +172 -0
  280. autogen/interop/registry.py +70 -0
  281. autogen/io/__init__.py +15 -0
  282. autogen/io/base.py +151 -0
  283. autogen/io/console.py +56 -0
  284. autogen/io/processors/__init__.py +12 -0
  285. autogen/io/processors/base.py +21 -0
  286. autogen/io/processors/console_event_processor.py +61 -0
  287. autogen/io/run_response.py +294 -0
  288. autogen/io/thread_io_stream.py +63 -0
  289. autogen/io/websockets.py +214 -0
  290. autogen/json_utils.py +42 -0
  291. autogen/llm_clients/MIGRATION_TO_V2.md +782 -0
  292. autogen/llm_clients/__init__.py +77 -0
  293. autogen/llm_clients/client_v2.py +122 -0
  294. autogen/llm_clients/models/__init__.py +55 -0
  295. autogen/llm_clients/models/content_blocks.py +389 -0
  296. autogen/llm_clients/models/unified_message.py +145 -0
  297. autogen/llm_clients/models/unified_response.py +83 -0
  298. autogen/llm_clients/openai_completions_client.py +444 -0
  299. autogen/llm_config/__init__.py +11 -0
  300. autogen/llm_config/client.py +59 -0
  301. autogen/llm_config/config.py +461 -0
  302. autogen/llm_config/entry.py +169 -0
  303. autogen/llm_config/types.py +37 -0
  304. autogen/llm_config/utils.py +223 -0
  305. autogen/logger/__init__.py +11 -0
  306. autogen/logger/base_logger.py +129 -0
  307. autogen/logger/file_logger.py +262 -0
  308. autogen/logger/logger_factory.py +42 -0
  309. autogen/logger/logger_utils.py +57 -0
  310. autogen/logger/sqlite_logger.py +524 -0
  311. autogen/math_utils.py +338 -0
  312. autogen/mcp/__init__.py +7 -0
  313. autogen/mcp/__main__.py +78 -0
  314. autogen/mcp/helpers.py +45 -0
  315. autogen/mcp/mcp_client.py +349 -0
  316. autogen/mcp/mcp_proxy/__init__.py +19 -0
  317. autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py +62 -0
  318. autogen/mcp/mcp_proxy/mcp_proxy.py +577 -0
  319. autogen/mcp/mcp_proxy/operation_grouping.py +166 -0
  320. autogen/mcp/mcp_proxy/operation_renaming.py +110 -0
  321. autogen/mcp/mcp_proxy/patch_fastapi_code_generator.py +98 -0
  322. autogen/mcp/mcp_proxy/security.py +399 -0
  323. autogen/mcp/mcp_proxy/security_schema_visitor.py +37 -0
  324. autogen/messages/__init__.py +7 -0
  325. autogen/messages/agent_messages.py +946 -0
  326. autogen/messages/base_message.py +108 -0
  327. autogen/messages/client_messages.py +172 -0
  328. autogen/messages/print_message.py +48 -0
  329. autogen/oai/__init__.py +61 -0
  330. autogen/oai/anthropic.py +1516 -0
  331. autogen/oai/bedrock.py +800 -0
  332. autogen/oai/cerebras.py +302 -0
  333. autogen/oai/client.py +1658 -0
  334. autogen/oai/client_utils.py +196 -0
  335. autogen/oai/cohere.py +494 -0
  336. autogen/oai/gemini.py +1045 -0
  337. autogen/oai/gemini_types.py +156 -0
  338. autogen/oai/groq.py +319 -0
  339. autogen/oai/mistral.py +311 -0
  340. autogen/oai/oai_models/__init__.py +23 -0
  341. autogen/oai/oai_models/_models.py +16 -0
  342. autogen/oai/oai_models/chat_completion.py +86 -0
  343. autogen/oai/oai_models/chat_completion_audio.py +32 -0
  344. autogen/oai/oai_models/chat_completion_message.py +97 -0
  345. autogen/oai/oai_models/chat_completion_message_tool_call.py +60 -0
  346. autogen/oai/oai_models/chat_completion_token_logprob.py +62 -0
  347. autogen/oai/oai_models/completion_usage.py +59 -0
  348. autogen/oai/ollama.py +657 -0
  349. autogen/oai/openai_responses.py +451 -0
  350. autogen/oai/openai_utils.py +897 -0
  351. autogen/oai/together.py +387 -0
  352. autogen/remote/__init__.py +18 -0
  353. autogen/remote/agent.py +199 -0
  354. autogen/remote/agent_service.py +197 -0
  355. autogen/remote/errors.py +17 -0
  356. autogen/remote/httpx_client_factory.py +131 -0
  357. autogen/remote/protocol.py +37 -0
  358. autogen/remote/retry.py +102 -0
  359. autogen/remote/runtime.py +96 -0
  360. autogen/retrieve_utils.py +490 -0
  361. autogen/runtime_logging.py +161 -0
  362. autogen/testing/__init__.py +12 -0
  363. autogen/testing/messages.py +45 -0
  364. autogen/testing/test_agent.py +111 -0
  365. autogen/token_count_utils.py +280 -0
  366. autogen/tools/__init__.py +20 -0
  367. autogen/tools/contrib/__init__.py +9 -0
  368. autogen/tools/contrib/time/__init__.py +7 -0
  369. autogen/tools/contrib/time/time.py +40 -0
  370. autogen/tools/dependency_injection.py +249 -0
  371. autogen/tools/experimental/__init__.py +54 -0
  372. autogen/tools/experimental/browser_use/__init__.py +7 -0
  373. autogen/tools/experimental/browser_use/browser_use.py +154 -0
  374. autogen/tools/experimental/code_execution/__init__.py +7 -0
  375. autogen/tools/experimental/code_execution/python_code_execution.py +86 -0
  376. autogen/tools/experimental/crawl4ai/__init__.py +7 -0
  377. autogen/tools/experimental/crawl4ai/crawl4ai.py +150 -0
  378. autogen/tools/experimental/deep_research/__init__.py +7 -0
  379. autogen/tools/experimental/deep_research/deep_research.py +329 -0
  380. autogen/tools/experimental/duckduckgo/__init__.py +7 -0
  381. autogen/tools/experimental/duckduckgo/duckduckgo_search.py +103 -0
  382. autogen/tools/experimental/firecrawl/__init__.py +7 -0
  383. autogen/tools/experimental/firecrawl/firecrawl_tool.py +836 -0
  384. autogen/tools/experimental/google/__init__.py +14 -0
  385. autogen/tools/experimental/google/authentication/__init__.py +11 -0
  386. autogen/tools/experimental/google/authentication/credentials_hosted_provider.py +43 -0
  387. autogen/tools/experimental/google/authentication/credentials_local_provider.py +91 -0
  388. autogen/tools/experimental/google/authentication/credentials_provider.py +35 -0
  389. autogen/tools/experimental/google/drive/__init__.py +9 -0
  390. autogen/tools/experimental/google/drive/drive_functions.py +124 -0
  391. autogen/tools/experimental/google/drive/toolkit.py +88 -0
  392. autogen/tools/experimental/google/model.py +17 -0
  393. autogen/tools/experimental/google/toolkit_protocol.py +19 -0
  394. autogen/tools/experimental/google_search/__init__.py +8 -0
  395. autogen/tools/experimental/google_search/google_search.py +93 -0
  396. autogen/tools/experimental/google_search/youtube_search.py +181 -0
  397. autogen/tools/experimental/messageplatform/__init__.py +17 -0
  398. autogen/tools/experimental/messageplatform/discord/__init__.py +7 -0
  399. autogen/tools/experimental/messageplatform/discord/discord.py +284 -0
  400. autogen/tools/experimental/messageplatform/slack/__init__.py +7 -0
  401. autogen/tools/experimental/messageplatform/slack/slack.py +385 -0
  402. autogen/tools/experimental/messageplatform/telegram/__init__.py +7 -0
  403. autogen/tools/experimental/messageplatform/telegram/telegram.py +271 -0
  404. autogen/tools/experimental/perplexity/__init__.py +7 -0
  405. autogen/tools/experimental/perplexity/perplexity_search.py +249 -0
  406. autogen/tools/experimental/reliable/__init__.py +10 -0
  407. autogen/tools/experimental/reliable/reliable.py +1311 -0
  408. autogen/tools/experimental/searxng/__init__.py +7 -0
  409. autogen/tools/experimental/searxng/searxng_search.py +142 -0
  410. autogen/tools/experimental/tavily/__init__.py +7 -0
  411. autogen/tools/experimental/tavily/tavily_search.py +176 -0
  412. autogen/tools/experimental/web_search_preview/__init__.py +7 -0
  413. autogen/tools/experimental/web_search_preview/web_search_preview.py +120 -0
  414. autogen/tools/experimental/wikipedia/__init__.py +7 -0
  415. autogen/tools/experimental/wikipedia/wikipedia.py +284 -0
  416. autogen/tools/function_utils.py +412 -0
  417. autogen/tools/tool.py +188 -0
  418. autogen/tools/toolkit.py +86 -0
  419. autogen/types.py +29 -0
  420. autogen/version.py +7 -0
  421. templates/client_template/main.jinja2 +72 -0
  422. templates/config_template/config.jinja2 +7 -0
  423. templates/main.jinja2 +61 -0
@@ -0,0 +1,819 @@
1
+ Metadata-Version: 2.4
2
+ Name: ag2
3
+ Version: 0.10.2
4
+ Summary: A programming framework for agentic AI
5
+ Project-URL: Homepage, https://ag2.ai/
6
+ Project-URL: Documentation, https://docs.ag2.ai
7
+ Project-URL: Tracker, https://github.com/ag2ai/ag2/issues
8
+ Project-URL: Source, https://github.com/ag2ai/ag2
9
+ Project-URL: Discord, https://discord.gg/pAbnFJrkgZ
10
+ Author-email: Chi Wang & Qingyun Wu <support@ag2.ai>
11
+ License-File: LICENSE
12
+ License-File: NOTICE.md
13
+ Keywords: ag2,ag2.ai,ag2ai,agent,agentic,ai,autogen
14
+ Classifier: Development Status :: 5 - Production/Stable
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: Information Technology
17
+ Classifier: License :: OSI Approved :: Apache Software License
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Programming Language :: Python :: 3 :: Only
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: Implementation :: CPython
27
+ Classifier: Topic :: Software Development
28
+ Classifier: Topic :: Software Development :: Libraries
29
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
30
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
+ Requires-Python: >=3.10
32
+ Requires-Dist: anyio<5.0.0,>=3.0.0
33
+ Requires-Dist: diskcache
34
+ Requires-Dist: docker
35
+ Requires-Dist: httpx<1,>=0.28.1
36
+ Requires-Dist: packaging
37
+ Requires-Dist: pydantic<3,>=2.6.1
38
+ Requires-Dist: python-dotenv
39
+ Requires-Dist: termcolor
40
+ Requires-Dist: tiktoken
41
+ Provides-Extra: a2a
42
+ Requires-Dist: a2a-sdk[http-server]<0.4,>=0.3.11; extra == 'a2a'
43
+ Provides-Extra: anthropic
44
+ Requires-Dist: anthropic[vertex]>=0.23.1; extra == 'anthropic'
45
+ Provides-Extra: autobuild
46
+ Requires-Dist: chromadb<1.4,>=1.3.0; extra == 'autobuild'
47
+ Requires-Dist: huggingface-hub; extra == 'autobuild'
48
+ Requires-Dist: sentence-transformers<=5.1.0,>=3.0.0; extra == 'autobuild'
49
+ Provides-Extra: bedrock
50
+ Requires-Dist: boto3>=1.34.149; extra == 'bedrock'
51
+ Provides-Extra: blendsearch
52
+ Requires-Dist: flaml[blendsearch]; extra == 'blendsearch'
53
+ Provides-Extra: browser-use
54
+ Requires-Dist: browser-use==0.1.37; extra == 'browser-use'
55
+ Provides-Extra: captainagent
56
+ Requires-Dist: chromadb<1.4,>=1.3.0; extra == 'captainagent'
57
+ Requires-Dist: huggingface-hub; extra == 'captainagent'
58
+ Requires-Dist: pandas; extra == 'captainagent'
59
+ Requires-Dist: sentence-transformers<=5.1.0,>=3.0.0; extra == 'captainagent'
60
+ Provides-Extra: cerebras
61
+ Requires-Dist: cerebras-cloud-sdk>=1.0.0; extra == 'cerebras'
62
+ Provides-Extra: cohere
63
+ Requires-Dist: cohere>=5.13.5; extra == 'cohere'
64
+ Provides-Extra: commsagent-discord
65
+ Requires-Dist: discord-py<2.7,>=2.4.0; extra == 'commsagent-discord'
66
+ Provides-Extra: commsagent-slack
67
+ Requires-Dist: slack-sdk<3.40,>=3.33.0; extra == 'commsagent-slack'
68
+ Provides-Extra: commsagent-telegram
69
+ Requires-Dist: telethon<2,>=1.38.1; extra == 'commsagent-telegram'
70
+ Provides-Extra: cosmosdb
71
+ Requires-Dist: azure-cosmos>=4.2.0; extra == 'cosmosdb'
72
+ Provides-Extra: crawl4ai
73
+ Requires-Dist: crawl4ai<0.8,>=0.4.247; extra == 'crawl4ai'
74
+ Provides-Extra: deepseek
75
+ Requires-Dist: openai>=1.99.3; extra == 'deepseek'
76
+ Provides-Extra: dev
77
+ Requires-Dist: a2a-sdk[http-server]<0.4,>=0.3.11; extra == 'dev'
78
+ Requires-Dist: cairosvg; extra == 'dev'
79
+ Requires-Dist: codespell==2.4.1; extra == 'dev'
80
+ Requires-Dist: detect-secrets==1.5.0; extra == 'dev'
81
+ Requires-Dist: dirty-equals==0.9.0; extra == 'dev'
82
+ Requires-Dist: fastapi==0.116.1; extra == 'dev'
83
+ Requires-Dist: freezegun==1.5.5; extra == 'dev'
84
+ Requires-Dist: ipykernel==6.30.1; extra == 'dev'
85
+ Requires-Dist: jinja2==3.1.6; extra == 'dev'
86
+ Requires-Dist: mcp>=1.11.0; extra == 'dev'
87
+ Requires-Dist: mdx-include==1.4.2; extra == 'dev'
88
+ Requires-Dist: mike==2.1.3; extra == 'dev'
89
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.4.7; extra == 'dev'
90
+ Requires-Dist: mkdocs-glightbox==0.5.1; extra == 'dev'
91
+ Requires-Dist: mkdocs-literate-nav==0.6.2; extra == 'dev'
92
+ Requires-Dist: mkdocs-macros-plugin==1.3.9; extra == 'dev'
93
+ Requires-Dist: mkdocs-material==9.6.19; extra == 'dev'
94
+ Requires-Dist: mkdocs-minify-plugin==0.8.0; extra == 'dev'
95
+ Requires-Dist: mkdocs-redirects==1.2.2; extra == 'dev'
96
+ Requires-Dist: mkdocstrings[python]==0.30.0; extra == 'dev'
97
+ Requires-Dist: mypy==1.17.1; extra == 'dev'
98
+ Requires-Dist: nbclient==0.10.2; extra == 'dev'
99
+ Requires-Dist: nbconvert==7.16.6; extra == 'dev'
100
+ Requires-Dist: nbformat==5.10.4; extra == 'dev'
101
+ Requires-Dist: openai>=1.99.3; extra == 'dev'
102
+ Requires-Dist: pandas==2.3.2; extra == 'dev'
103
+ Requires-Dist: pdoc3==0.11.6; extra == 'dev'
104
+ Requires-Dist: pillow; extra == 'dev'
105
+ Requires-Dist: pre-commit==4.3.0; extra == 'dev'
106
+ Requires-Dist: pytest-asyncio==1.1.0; extra == 'dev'
107
+ Requires-Dist: pytest-cov==6.3.0; extra == 'dev'
108
+ Requires-Dist: pytest==8.4.2; extra == 'dev'
109
+ Requires-Dist: pyupgrade-directories==0.3.0; extra == 'dev'
110
+ Requires-Dist: pyyaml==6.0.2; extra == 'dev'
111
+ Requires-Dist: ruff==0.12.12; extra == 'dev'
112
+ Requires-Dist: termcolor==3.1.0; extra == 'dev'
113
+ Requires-Dist: toml==0.10.2; extra == 'dev'
114
+ Requires-Dist: typer==0.17.4; extra == 'dev'
115
+ Requires-Dist: types-decorator; extra == 'dev'
116
+ Requires-Dist: types-pycurl; extra == 'dev'
117
+ Requires-Dist: types-python-dateutil; extra == 'dev'
118
+ Requires-Dist: types-pyyaml; extra == 'dev'
119
+ Requires-Dist: types-requests; extra == 'dev'
120
+ Requires-Dist: types-ujson; extra == 'dev'
121
+ Requires-Dist: uv==0.8.15; extra == 'dev'
122
+ Provides-Extra: docs
123
+ Requires-Dist: a2a-sdk[http-server]<0.4,>=0.3.11; extra == 'docs'
124
+ Requires-Dist: cairosvg; extra == 'docs'
125
+ Requires-Dist: jinja2==3.1.6; extra == 'docs'
126
+ Requires-Dist: mcp>=1.11.0; extra == 'docs'
127
+ Requires-Dist: mdx-include==1.4.2; extra == 'docs'
128
+ Requires-Dist: mike==2.1.3; extra == 'docs'
129
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.4.7; extra == 'docs'
130
+ Requires-Dist: mkdocs-glightbox==0.5.1; extra == 'docs'
131
+ Requires-Dist: mkdocs-literate-nav==0.6.2; extra == 'docs'
132
+ Requires-Dist: mkdocs-macros-plugin==1.3.9; extra == 'docs'
133
+ Requires-Dist: mkdocs-material==9.6.19; extra == 'docs'
134
+ Requires-Dist: mkdocs-minify-plugin==0.8.0; extra == 'docs'
135
+ Requires-Dist: mkdocs-redirects==1.2.2; extra == 'docs'
136
+ Requires-Dist: mkdocstrings[python]==0.30.0; extra == 'docs'
137
+ Requires-Dist: nbclient==0.10.2; extra == 'docs'
138
+ Requires-Dist: pdoc3==0.11.6; extra == 'docs'
139
+ Requires-Dist: pillow; extra == 'docs'
140
+ Requires-Dist: pyyaml==6.0.2; extra == 'docs'
141
+ Requires-Dist: termcolor==3.1.0; extra == 'docs'
142
+ Requires-Dist: typer==0.17.4; extra == 'docs'
143
+ Provides-Extra: duckduckgo
144
+ Requires-Dist: duckduckgo-search>=8.0.2; extra == 'duckduckgo'
145
+ Provides-Extra: flaml
146
+ Requires-Dist: flaml; extra == 'flaml'
147
+ Requires-Dist: numpy<2.0.0,>=1.24.0; (python_version < '3.13') and extra == 'flaml'
148
+ Requires-Dist: numpy>=2.1; (python_version >= '3.13') and extra == 'flaml'
149
+ Provides-Extra: gemini
150
+ Requires-Dist: google-api-core; extra == 'gemini'
151
+ Requires-Dist: google-auth; extra == 'gemini'
152
+ Requires-Dist: google-cloud-aiplatform; extra == 'gemini'
153
+ Requires-Dist: google-genai<1.50,>=1.20.0; extra == 'gemini'
154
+ Requires-Dist: jsonschema; extra == 'gemini'
155
+ Requires-Dist: pillow; extra == 'gemini'
156
+ Provides-Extra: gemini-realtime
157
+ Requires-Dist: google-api-core; extra == 'gemini-realtime'
158
+ Requires-Dist: google-auth; extra == 'gemini-realtime'
159
+ Requires-Dist: google-cloud-aiplatform; extra == 'gemini-realtime'
160
+ Requires-Dist: google-genai<1.50,>=1.20.0; extra == 'gemini-realtime'
161
+ Requires-Dist: jsonschema; extra == 'gemini-realtime'
162
+ Requires-Dist: pillow; extra == 'gemini-realtime'
163
+ Requires-Dist: websockets<16,>=14.0; extra == 'gemini-realtime'
164
+ Provides-Extra: google-api
165
+ Requires-Dist: google-api-python-client<3.0,>=2.163.0; extra == 'google-api'
166
+ Requires-Dist: google-auth-httplib2<0.3,>=0.2.0; extra == 'google-api'
167
+ Requires-Dist: google-auth-oauthlib<2.0,>=1.2.1; extra == 'google-api'
168
+ Provides-Extra: google-client
169
+ Requires-Dist: google-api-python-client<3.0,>=2.163.0; extra == 'google-client'
170
+ Provides-Extra: google-search
171
+ Requires-Dist: google-api-python-client<3.0,>=2.163.0; extra == 'google-search'
172
+ Provides-Extra: graph
173
+ Requires-Dist: matplotlib; extra == 'graph'
174
+ Requires-Dist: networkx; extra == 'graph'
175
+ Provides-Extra: graph-rag-falkor-db
176
+ Requires-Dist: falkordb>=1.0.10; extra == 'graph-rag-falkor-db'
177
+ Requires-Dist: graphrag-sdk==0.8.0; extra == 'graph-rag-falkor-db'
178
+ Provides-Extra: groq
179
+ Requires-Dist: groq>=0.9.0; extra == 'groq'
180
+ Provides-Extra: interop
181
+ Requires-Dist: crewai[tools]<1,>=0.76; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop'
182
+ Requires-Dist: fasta2a; extra == 'interop'
183
+ Requires-Dist: langchain-community<1,>=0.3.12; extra == 'interop'
184
+ Requires-Dist: litellm<=1.76.3; extra == 'interop'
185
+ Requires-Dist: pydantic-ai>=1.0.12; extra == 'interop'
186
+ Requires-Dist: weaviate-client<5,>=4; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop'
187
+ Provides-Extra: interop-crewai
188
+ Requires-Dist: crewai[tools]<1,>=0.76; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop-crewai'
189
+ Requires-Dist: litellm<=1.76.3; extra == 'interop-crewai'
190
+ Requires-Dist: weaviate-client<5,>=4; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop-crewai'
191
+ Provides-Extra: interop-langchain
192
+ Requires-Dist: langchain-community<1,>=0.3.12; extra == 'interop-langchain'
193
+ Provides-Extra: interop-pydantic-ai
194
+ Requires-Dist: fasta2a; extra == 'interop-pydantic-ai'
195
+ Requires-Dist: pydantic-ai>=1.0.12; extra == 'interop-pydantic-ai'
196
+ Provides-Extra: jupyter-executor
197
+ Requires-Dist: ipykernel>=6.29.0; extra == 'jupyter-executor'
198
+ Requires-Dist: jupyter-client>=8.6.0; extra == 'jupyter-executor'
199
+ Requires-Dist: jupyter-kernel-gateway; extra == 'jupyter-executor'
200
+ Requires-Dist: requests; extra == 'jupyter-executor'
201
+ Requires-Dist: websocket-client; extra == 'jupyter-executor'
202
+ Provides-Extra: lint
203
+ Requires-Dist: codespell==2.4.1; extra == 'lint'
204
+ Requires-Dist: pyupgrade-directories==0.3.0; extra == 'lint'
205
+ Requires-Dist: ruff==0.12.12; extra == 'lint'
206
+ Provides-Extra: lmm
207
+ Requires-Dist: pillow; extra == 'lmm'
208
+ Requires-Dist: replicate; extra == 'lmm'
209
+ Provides-Extra: long-context
210
+ Requires-Dist: llmlingua<0.3; extra == 'long-context'
211
+ Provides-Extra: mathchat
212
+ Requires-Dist: sympy; extra == 'mathchat'
213
+ Requires-Dist: wolframalpha; extra == 'mathchat'
214
+ Provides-Extra: mcp
215
+ Requires-Dist: mcp>=1.11.0; extra == 'mcp'
216
+ Provides-Extra: mcp-proxy-gen
217
+ Requires-Dist: fastapi-code-generator>=0.5.4; extra == 'mcp-proxy-gen'
218
+ Requires-Dist: fastapi<1,>=0.112; extra == 'mcp-proxy-gen'
219
+ Requires-Dist: pyyaml; extra == 'mcp-proxy-gen'
220
+ Requires-Dist: requests; extra == 'mcp-proxy-gen'
221
+ Requires-Dist: typer; extra == 'mcp-proxy-gen'
222
+ Provides-Extra: mistral
223
+ Requires-Dist: mistralai>=1.0.1; extra == 'mistral'
224
+ Provides-Extra: neo4j
225
+ Requires-Dist: docx2txt==0.9; extra == 'neo4j'
226
+ Requires-Dist: llama-index-core<0.14,>=0.12; extra == 'neo4j'
227
+ Requires-Dist: llama-index-graph-stores-neo4j<0.6,>=0.4; extra == 'neo4j'
228
+ Requires-Dist: llama-index-readers-web<0.6,>=0.4; extra == 'neo4j'
229
+ Requires-Dist: llama-index<0.14,>=0.12; extra == 'neo4j'
230
+ Provides-Extra: ollama
231
+ Requires-Dist: fix-busted-json>=0.0.18; extra == 'ollama'
232
+ Requires-Dist: ollama>=0.4.7; extra == 'ollama'
233
+ Provides-Extra: openai
234
+ Requires-Dist: openai>=1.99.3; extra == 'openai'
235
+ Provides-Extra: openai-realtime
236
+ Requires-Dist: openai>=1.99.3; extra == 'openai-realtime'
237
+ Requires-Dist: openai[realtime]; extra == 'openai-realtime'
238
+ Provides-Extra: rag
239
+ Requires-Dist: chromadb<2,>=0.5; extra == 'rag'
240
+ Requires-Dist: docling<3,>=2.15.1; extra == 'rag'
241
+ Requires-Dist: llama-index-core<0.14,>=0.12; extra == 'rag'
242
+ Requires-Dist: llama-index-embeddings-huggingface<0.7,>=0.5; extra == 'rag'
243
+ Requires-Dist: llama-index-embeddings-openai<0.6,>=0.3; extra == 'rag'
244
+ Requires-Dist: llama-index-llms-langchain<0.8,>=0.6; extra == 'rag'
245
+ Requires-Dist: llama-index-llms-openai<0.6,>=0.4; extra == 'rag'
246
+ Requires-Dist: llama-index-vector-stores-chroma<0.6,>=0.4; extra == 'rag'
247
+ Requires-Dist: llama-index-vector-stores-mongodb<0.9,>=0.6; extra == 'rag'
248
+ Requires-Dist: llama-index<0.14,>=0.12; extra == 'rag'
249
+ Requires-Dist: requests<3,>=2.32.3; extra == 'rag'
250
+ Requires-Dist: selenium<5,>=4.28.1; extra == 'rag'
251
+ Requires-Dist: webdriver-manager==4.0.2; extra == 'rag'
252
+ Provides-Extra: redis
253
+ Requires-Dist: redis; extra == 'redis'
254
+ Provides-Extra: retrievechat
255
+ Requires-Dist: beautifulsoup4; extra == 'retrievechat'
256
+ Requires-Dist: chromadb<1.4,>=1.3.0; extra == 'retrievechat'
257
+ Requires-Dist: ipython; extra == 'retrievechat'
258
+ Requires-Dist: markdownify; extra == 'retrievechat'
259
+ Requires-Dist: protobuf==6.32.0; extra == 'retrievechat'
260
+ Requires-Dist: pypdf; extra == 'retrievechat'
261
+ Requires-Dist: sentence-transformers<=5.1.0,>=3.0.0; extra == 'retrievechat'
262
+ Provides-Extra: retrievechat-couchbase
263
+ Requires-Dist: beautifulsoup4; extra == 'retrievechat-couchbase'
264
+ Requires-Dist: chromadb<1.4,>=1.3.0; extra == 'retrievechat-couchbase'
265
+ Requires-Dist: couchbase>=4.3.0; extra == 'retrievechat-couchbase'
266
+ Requires-Dist: ipython; extra == 'retrievechat-couchbase'
267
+ Requires-Dist: markdownify; extra == 'retrievechat-couchbase'
268
+ Requires-Dist: numpy; extra == 'retrievechat-couchbase'
269
+ Requires-Dist: protobuf==6.32.0; extra == 'retrievechat-couchbase'
270
+ Requires-Dist: pypdf; extra == 'retrievechat-couchbase'
271
+ Requires-Dist: sentence-transformers<=5.1.0,>=3.0.0; extra == 'retrievechat-couchbase'
272
+ Provides-Extra: retrievechat-mongodb
273
+ Requires-Dist: beautifulsoup4; extra == 'retrievechat-mongodb'
274
+ Requires-Dist: chromadb<1.4,>=1.3.0; extra == 'retrievechat-mongodb'
275
+ Requires-Dist: ipython; extra == 'retrievechat-mongodb'
276
+ Requires-Dist: markdownify; extra == 'retrievechat-mongodb'
277
+ Requires-Dist: numpy; extra == 'retrievechat-mongodb'
278
+ Requires-Dist: protobuf==6.32.0; extra == 'retrievechat-mongodb'
279
+ Requires-Dist: pymongo>=4.0.0; extra == 'retrievechat-mongodb'
280
+ Requires-Dist: pypdf; extra == 'retrievechat-mongodb'
281
+ Requires-Dist: sentence-transformers<=5.1.0,>=3.0.0; extra == 'retrievechat-mongodb'
282
+ Provides-Extra: retrievechat-pgvector
283
+ Requires-Dist: beautifulsoup4; extra == 'retrievechat-pgvector'
284
+ Requires-Dist: chromadb<1.4,>=1.3.0; extra == 'retrievechat-pgvector'
285
+ Requires-Dist: ipython; extra == 'retrievechat-pgvector'
286
+ Requires-Dist: markdownify; extra == 'retrievechat-pgvector'
287
+ Requires-Dist: pgvector>=0.2.5; extra == 'retrievechat-pgvector'
288
+ Requires-Dist: protobuf==6.32.0; extra == 'retrievechat-pgvector'
289
+ Requires-Dist: psycopg>=3.1.18; (platform_system == 'Linux') and extra == 'retrievechat-pgvector'
290
+ Requires-Dist: psycopg[binary]>=3.1.18; (platform_system == 'Windows' or platform_system == 'Darwin') and extra == 'retrievechat-pgvector'
291
+ Requires-Dist: pypdf; extra == 'retrievechat-pgvector'
292
+ Requires-Dist: sentence-transformers<=5.1.0,>=3.0.0; extra == 'retrievechat-pgvector'
293
+ Provides-Extra: retrievechat-qdrant
294
+ Requires-Dist: beautifulsoup4; extra == 'retrievechat-qdrant'
295
+ Requires-Dist: chromadb<1.4,>=1.3.0; extra == 'retrievechat-qdrant'
296
+ Requires-Dist: fastembed>=0.3.1; extra == 'retrievechat-qdrant'
297
+ Requires-Dist: ipython; extra == 'retrievechat-qdrant'
298
+ Requires-Dist: markdownify; extra == 'retrievechat-qdrant'
299
+ Requires-Dist: protobuf==6.32.0; extra == 'retrievechat-qdrant'
300
+ Requires-Dist: pypdf; extra == 'retrievechat-qdrant'
301
+ Requires-Dist: qdrant-client; extra == 'retrievechat-qdrant'
302
+ Requires-Dist: sentence-transformers<=5.1.0,>=3.0.0; extra == 'retrievechat-qdrant'
303
+ Provides-Extra: tavily
304
+ Requires-Dist: tavily-python>=0.7.4; extra == 'tavily'
305
+ Provides-Extra: teachable
306
+ Requires-Dist: chromadb; extra == 'teachable'
307
+ Provides-Extra: test
308
+ Requires-Dist: dirty-equals==0.9.0; extra == 'test'
309
+ Requires-Dist: fastapi==0.116.1; extra == 'test'
310
+ Requires-Dist: freezegun==1.5.5; extra == 'test'
311
+ Requires-Dist: ipykernel==6.30.1; extra == 'test'
312
+ Requires-Dist: mcp>=1.11.0; extra == 'test'
313
+ Requires-Dist: nbconvert==7.16.6; extra == 'test'
314
+ Requires-Dist: nbformat==5.10.4; extra == 'test'
315
+ Requires-Dist: pandas==2.3.2; extra == 'test'
316
+ Requires-Dist: pytest-asyncio==1.1.0; extra == 'test'
317
+ Requires-Dist: pytest-cov==6.3.0; extra == 'test'
318
+ Requires-Dist: pytest==8.4.2; extra == 'test'
319
+ Provides-Extra: together
320
+ Requires-Dist: together>=1.2; extra == 'together'
321
+ Provides-Extra: twilio
322
+ Requires-Dist: fastapi<1,>=0.115.0; extra == 'twilio'
323
+ Requires-Dist: twilio>=9.3.2; extra == 'twilio'
324
+ Requires-Dist: uvicorn<1,>=0.30.6; extra == 'twilio'
325
+ Provides-Extra: types
326
+ Requires-Dist: a2a-sdk[http-server]<0.4,>=0.3.11; extra == 'types'
327
+ Requires-Dist: dirty-equals==0.9.0; extra == 'types'
328
+ Requires-Dist: fastapi==0.116.1; extra == 'types'
329
+ Requires-Dist: freezegun==1.5.5; extra == 'types'
330
+ Requires-Dist: ipykernel==6.30.1; extra == 'types'
331
+ Requires-Dist: mcp>=1.11.0; extra == 'types'
332
+ Requires-Dist: mypy==1.17.1; extra == 'types'
333
+ Requires-Dist: nbconvert==7.16.6; extra == 'types'
334
+ Requires-Dist: nbformat==5.10.4; extra == 'types'
335
+ Requires-Dist: openai>=1.99.3; extra == 'types'
336
+ Requires-Dist: pandas==2.3.2; extra == 'types'
337
+ Requires-Dist: pytest-asyncio==1.1.0; extra == 'types'
338
+ Requires-Dist: pytest-cov==6.3.0; extra == 'types'
339
+ Requires-Dist: pytest==8.4.2; extra == 'types'
340
+ Requires-Dist: types-decorator; extra == 'types'
341
+ Requires-Dist: types-pycurl; extra == 'types'
342
+ Requires-Dist: types-python-dateutil; extra == 'types'
343
+ Requires-Dist: types-pyyaml; extra == 'types'
344
+ Requires-Dist: types-requests; extra == 'types'
345
+ Requires-Dist: types-ujson; extra == 'types'
346
+ Provides-Extra: websockets
347
+ Requires-Dist: websockets<16,>=14.0; extra == 'websockets'
348
+ Provides-Extra: websurfer
349
+ Requires-Dist: beautifulsoup4; extra == 'websurfer'
350
+ Requires-Dist: markdownify; extra == 'websurfer'
351
+ Requires-Dist: pathvalidate; extra == 'websurfer'
352
+ Requires-Dist: pdfminer-six; extra == 'websurfer'
353
+ Provides-Extra: wikipedia
354
+ Requires-Dist: wikipedia-api<1.0,>=0.8.1; extra == 'wikipedia'
355
+ Provides-Extra: yepcode
356
+ Requires-Dist: python-dotenv; extra == 'yepcode'
357
+ Requires-Dist: yepcode-run>=1.6.1; extra == 'yepcode'
358
+ Description-Content-Type: text/markdown
359
+
360
+ <a name="readme-top"></a>
361
+
362
+ <p align="center">
363
+ <!-- The image URL points to the GitHub-hosted content, ensuring it displays correctly on the PyPI website.-->
364
+ <img src="https://raw.githubusercontent.com/ag2ai/ag2/27b37494a6f72b1f8050f6bd7be9a7ff232cf749/website/static/img/ag2.svg" width="150" title="hover text">
365
+
366
+ <br>
367
+ <br>
368
+
369
+ <a href="https://www.pepy.tech/projects/ag2">
370
+ <img src="https://static.pepy.tech/personalized-badge/ag2?period=month&units=international_system&left_color=grey&right_color=green&left_text=downloads/month" alt="Downloads"/>
371
+ </a>
372
+
373
+ <a href="https://pypi.org/project/autogen/">
374
+ <img src="https://img.shields.io/pypi/v/ag2?label=PyPI&color=green">
375
+ </a>
376
+
377
+ <img src="https://img.shields.io/pypi/pyversions/ag2.svg?label=">
378
+
379
+ <a href="https://github.com/ag2ai/ag2/actions/workflows/python-package.yml">
380
+ <img src="https://github.com/ag2ai/ag2/actions/workflows/python-package.yml/badge.svg">
381
+ </a>
382
+ <a href="https://discord.gg/pAbnFJrkgZ">
383
+ <img src="https://img.shields.io/discord/1153072414184452236?logo=discord&style=flat">
384
+ </a>
385
+
386
+ <br>
387
+
388
+ <a href="https://x.com/ag2oss">
389
+ <img src="https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40ag2ai">
390
+ </a>
391
+ </p>
392
+
393
+ <p align="center">
394
+ <a href="https://docs.ag2.ai/">📚 Documentation</a> |
395
+ <a href="https://github.com/ag2ai/build-with-ag2">💡 Examples</a> |
396
+ <a href="https://docs.ag2.ai/latest/docs/contributor-guide/contributing">🤝 Contributing</a> |
397
+ <a href="#related-papers">📝 Cite paper</a> |
398
+ <a href="https://discord.gg/pAbnFJrkgZ">💬 Join Discord</a>
399
+ </p>
400
+
401
+ <p align="center">
402
+ AG2 was evolved from AutoGen. Fully open-sourced. We invite collaborators from all organizations to contribute.
403
+ </p>
404
+
405
+ # AG2: Open-Source AgentOS for AI Agents
406
+
407
+ 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. 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.
408
+
409
+ 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.
410
+
411
+ ## Table of contents
412
+
413
+ - [AG2: Open-Source AgentOS for AI Agents](#ag2-open-source-agentos-for-ai-agents)
414
+ - [Table of contents](#table-of-contents)
415
+ - [Getting started](#getting-started)
416
+ - [Installation](#installation)
417
+ - [Setup your API keys](#setup-your-api-keys)
418
+ - [Run your first agent](#run-your-first-agent)
419
+ - [Example applications](#example-applications)
420
+ - [Introduction of different agent concepts](#introduction-of-different-agent-concepts)
421
+ - [Conversable agent](#conversable-agent)
422
+ - [Human in the loop](#human-in-the-loop)
423
+ - [Orchestrating multiple agents](#orchestrating-multiple-agents)
424
+ - [Tools](#tools)
425
+ - [Advanced agentic design patterns](#advanced-agentic-design-patterns)
426
+ - [Announcements](#announcements)
427
+ - [Code style and linting](#code-style-and-linting)
428
+ - [Related papers](#related-papers)
429
+ - [Contributors Wall](#contributors-wall)
430
+ - [Cite the project](#cite-the-project)
431
+ - [License](#license)
432
+
433
+ ## Getting started
434
+
435
+ For a step-by-step walk through of AG2 concepts and code, see [Basic Concepts](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/installing-ag2/) in our documentation.
436
+
437
+ ### Installation
438
+
439
+ AG2 requires **Python version >= 3.10, < 3.14**. AG2 is available via `ag2` (or its alias `autogen`) on PyPI.
440
+
441
+ **Windows/Linux:**
442
+ ```bash
443
+ pip install ag2[openai]
444
+ ```
445
+
446
+ **Mac:**
447
+ ```bash
448
+ pip install 'ag2[openai]'
449
+ ```
450
+
451
+ Minimal dependencies are installed by default. You can install extra options based on the features you need.
452
+
453
+ ### Setup your API keys
454
+
455
+ To keep your LLM dependencies neat and avoid accidentally checking in code with your API key, we recommend storing your keys in a configuration file.
456
+
457
+ In our examples, we use a file named **`OAI_CONFIG_LIST`** to store API keys. You can choose any filename, but make sure to add it to `.gitignore` so it will not be committed to source control.
458
+
459
+ You can use the following content as a template:
460
+
461
+ ```json
462
+ [
463
+ {
464
+ "model": "gpt-5",
465
+ "api_key": "<your OpenAI API key here>"
466
+ }
467
+ ]
468
+ ```
469
+
470
+ ### Run your first agent
471
+
472
+ Create a script or a Jupyter Notebook and run your first agent.
473
+
474
+ ```python
475
+ from autogen import AssistantAgent, UserProxyAgent, LLMConfig
476
+
477
+ llm_config = LLMConfig.from_json(path="OAI_CONFIG_LIST")
478
+
479
+ assistant = AssistantAgent("assistant", llm_config=llm_config)
480
+
481
+ user_proxy = UserProxyAgent("user_proxy", code_execution_config={"work_dir": "coding", "use_docker": False})
482
+
483
+ user_proxy.run(assistant, message="Summarize the main differences between Python lists and tuples.").process()
484
+ ```
485
+
486
+ ## Example applications
487
+
488
+ We maintain a dedicated repository with a wide range of applications to help you get started with various use cases or check out our collection of jupyter notebooks as a starting point.
489
+
490
+ - [Build with AG2](https://github.com/ag2ai/build-with-ag2)
491
+ - [Jupyter Notebooks](notebook)
492
+
493
+ ## Introduction of different agent concepts
494
+
495
+ We have several agent concepts in AG2 to help you build your AI agents. We introduce the most common ones here.
496
+
497
+ - **Conversable Agent**: Agents that are able to send messages, receive messages and generate replies using GenAI models, non-GenAI tools, or human inputs.
498
+ - **Human in the loop**: Add human input to the conversation
499
+ - **Orchestrating multiple agents**: Users can orchestrate multiple agents with built-in conversation patterns such as swarms, group chats, nested chats, sequential chats or customize the orchestration by registering custom reply methods.
500
+ - **Tools**: Programs that can be registered, invoked and executed by agents
501
+ - **Advanced Concepts**: AG2 supports more concepts such as structured outputs, rag, code execution, etc.
502
+
503
+ ### Conversable agent
504
+
505
+ The [ConversableAgent](https://docs.ag2.ai/latest/docs/api-reference/autogen/ConversableAgent) is the fundamental building block of AG2, designed to enable seamless communication between AI entities. This core agent type handles message exchange and response generation, serving as the base class for all agents in the framework.
506
+
507
+ Let's begin with a simple example where two agents collaborate:
508
+ - A **coder agent** that writes Python code.
509
+ - A **reviewer agent** that critiques the code without rewriting it.
510
+
511
+ ```python
512
+ import logging
513
+ from autogen import ConversableAgent, LLMConfig
514
+
515
+ # Configure logging
516
+ logging.basicConfig(level=logging.INFO)
517
+ logger = logging.getLogger(__name__)
518
+
519
+ # Load LLM configuration
520
+ llm_config = LLMConfig.from_json(path="OAI_CONFIG_LIST")
521
+
522
+ # Define agents
523
+ coder = ConversableAgent(
524
+ name="coder",
525
+ system_message="You are a Python developer. Write short Python scripts.",
526
+ llm_config=llm_config,
527
+ )
528
+
529
+ reviewer = ConversableAgent(
530
+ name="reviewer",
531
+ system_message="You are a code reviewer. Analyze provided code and suggest improvements. "
532
+ "Do not generate code, only suggest improvements.",
533
+ llm_config=llm_config,
534
+ )
535
+
536
+ # Start a conversation
537
+ response = reviewer.run(
538
+ recipient=coder,
539
+ message="Write a Python function that computes Fibonacci numbers.",
540
+ max_turns=10
541
+ )
542
+
543
+ response.process()
544
+
545
+ logger.info("Final output:\n%s", response.summary)
546
+ ```
547
+
548
+ ---
549
+ ### Orchestrating Multiple Agents
550
+
551
+ AG2 enables sophisticated multi-agent collaboration through flexible orchestration patterns, allowing you to create dynamic systems where specialized agents work together to solve complex problems.
552
+
553
+ Here’s how to build a team of **teacher**, **lesson planner**, and **reviewer** agents working together to design a lesson plan:
554
+
555
+ ```python
556
+ import logging
557
+ from autogen import ConversableAgent, LLMConfig
558
+ from autogen.agentchat import run_group_chat
559
+ from autogen.agentchat.group.patterns import AutoPattern
560
+
561
+ logging.basicConfig(level=logging.INFO)
562
+ logger = logging.getLogger(__name__)
563
+
564
+ llm_config = LLMConfig.from_json(path="OAI_CONFIG_LIST")
565
+
566
+ # Define lesson planner and reviewer
567
+ planner_message = "You are a classroom lesson planner. Given a topic, write a lesson plan for a fourth grade class."
568
+ reviewer_message = "You are a classroom lesson reviewer. Compare the plan to the curriculum and suggest up to 3 improvements."
569
+
570
+ lesson_planner = ConversableAgent(
571
+ name="planner_agent",
572
+ system_message=planner_message,
573
+ description="Creates or revises lesson plans.",
574
+ llm_config=llm_config,
575
+ )
576
+
577
+ lesson_reviewer = ConversableAgent(
578
+ name="reviewer_agent",
579
+ system_message=reviewer_message,
580
+ description="Provides one round of feedback to lesson plans.",
581
+ llm_config=llm_config,
582
+ )
583
+
584
+ teacher_message = "You are a classroom teacher. You decide topics and collaborate with planner and reviewer to finalize lesson plans. When satisfied, output DONE!"
585
+
586
+ teacher = ConversableAgent(
587
+ name="teacher_agent",
588
+ system_message=teacher_message,
589
+ is_termination_msg=lambda x: "DONE!" in (x.get("content", "") or "").upper(),
590
+ llm_config=llm_config,
591
+ )
592
+
593
+ auto_selection = AutoPattern(
594
+ agents=[teacher, lesson_planner, lesson_reviewer],
595
+ initial_agent=lesson_planner,
596
+ group_manager_args={"name": "group_manager", "llm_config": llm_config},
597
+ )
598
+
599
+ response = run_group_chat(
600
+ pattern=auto_selection,
601
+ messages="Let's introduce our kids to the solar system.",
602
+ max_rounds=20,
603
+ )
604
+
605
+ response.process()
606
+
607
+ logger.info("Final output:\n%s", response.summary)
608
+ ```
609
+
610
+ ---
611
+
612
+ ### Human in the Loop
613
+
614
+ Human oversight is often essential for validating or guiding AI outputs.
615
+ AG2 provides the `UserProxyAgent` for seamless integration of human feedback.
616
+
617
+ Here we extend the **teacher–planner–reviewer** example by introducing a **human agent** who validates the final lesson:
618
+
619
+ ```python
620
+ import logging
621
+ from autogen import ConversableAgent, LLMConfig, UserProxyAgent
622
+ from autogen.agentchat import run_group_chat
623
+ from autogen.agentchat.group.patterns import AutoPattern
624
+
625
+ logging.basicConfig(level=logging.INFO)
626
+ logger = logging.getLogger(__name__)
627
+
628
+ llm_config = LLMConfig.from_json(path="OAI_CONFIG_LIST")
629
+
630
+ # Same agents as before, but now the human validator will pass to the planner who will check for "APPROVED" and terminate
631
+ planner_message = "You are a classroom lesson planner. Given a topic, write a lesson plan for a fourth grade class."
632
+ reviewer_message = "You are a classroom lesson reviewer. Compare the plan to the curriculum and suggest up to 3 improvements."
633
+ teacher_message = "You are an experienced classroom teacher. You don't prepare plans, you provide simple guidance to the planner to prepare a lesson plan on the key topic."
634
+
635
+ lesson_planner = ConversableAgent(
636
+ name="planner_agent",
637
+ system_message=planner_message,
638
+ description="Creates or revises lesson plans before having them reviewed.",
639
+ is_termination_msg=lambda x: "APPROVED" in (x.get("content", "") or "").upper(),
640
+ human_input_mode="NEVER",
641
+ llm_config=llm_config,
642
+ )
643
+
644
+ lesson_reviewer = ConversableAgent(
645
+ name="reviewer_agent",
646
+ system_message=reviewer_message,
647
+ description="Provides one round of feedback to lesson plans back to the lesson planner before requiring the human validator.",
648
+ llm_config=llm_config,
649
+ )
650
+
651
+ teacher = ConversableAgent(
652
+ name="teacher_agent",
653
+ system_message=teacher_message,
654
+ description="Provides guidance on the topic and content, if required.",
655
+ llm_config=llm_config,
656
+ )
657
+
658
+ human_validator = UserProxyAgent(
659
+ name="human_validator",
660
+ system_message="You are a human educator who provides final approval for lesson plans.",
661
+ description="Evaluates the proposed lesson plan and either approves it or requests revisions, before returning to the planner.",
662
+ )
663
+
664
+ auto_selection = AutoPattern(
665
+ agents=[teacher, lesson_planner, lesson_reviewer],
666
+ initial_agent=teacher,
667
+ user_agent=human_validator,
668
+ group_manager_args={"name": "group_manager", "llm_config": llm_config},
669
+ )
670
+
671
+ response = run_group_chat(
672
+ pattern=auto_selection,
673
+ messages="Let's introduce our kids to the solar system.",
674
+ max_rounds=20,
675
+ )
676
+
677
+ response.process()
678
+
679
+ logger.info("Final output:\n%s", response.summary)
680
+ ```
681
+
682
+ ---
683
+
684
+ ### Tools
685
+
686
+ Agents gain significant utility through **tools**, which extend their capabilities with external data, APIs, or functions.
687
+
688
+ ```python
689
+ import logging
690
+ from datetime import datetime
691
+ from typing import Annotated
692
+ from autogen import ConversableAgent, register_function, LLMConfig
693
+
694
+ logging.basicConfig(level=logging.INFO)
695
+ logger = logging.getLogger(__name__)
696
+
697
+ llm_config = LLMConfig.from_json(path="OAI_CONFIG_LIST")
698
+
699
+ # Tool: returns weekday for a given date
700
+ def get_weekday(date_string: Annotated[str, "Format: YYYY-MM-DD"]) -> str:
701
+ date = datetime.strptime(date_string, "%Y-%m-%d")
702
+ return date.strftime("%A")
703
+
704
+ date_agent = ConversableAgent(
705
+ name="date_agent",
706
+ system_message="You find the day of the week for a given date.",
707
+ llm_config=llm_config,
708
+ )
709
+
710
+ executor_agent = ConversableAgent(
711
+ name="executor_agent",
712
+ human_input_mode="NEVER",
713
+ llm_config=llm_config,
714
+ )
715
+
716
+ # Register tool
717
+ register_function(
718
+ get_weekday,
719
+ caller=date_agent,
720
+ executor=executor_agent,
721
+ description="Get the day of the week for a given date",
722
+ )
723
+
724
+ # Use tool in chat
725
+ chat_result = executor_agent.initiate_chat(
726
+ recipient=date_agent,
727
+ message="I was born on 1995-03-25, what day was it?",
728
+ max_turns=2,
729
+ )
730
+
731
+ logger.info("Final output:\n%s", chat_result.chat_history[-1]["content"])
732
+ ```
733
+
734
+ ### Advanced agentic design patterns
735
+
736
+ AG2 supports more advanced concepts to help you build your AI agent workflows. You can find more information in the documentation.
737
+
738
+ - [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/structured-outputs)
739
+ - [Ending a conversation](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/orchestration/ending-a-chat/)
740
+ - [Retrieval Augmented Generation (RAG)](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/rag/)
741
+ - [Code Execution](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/code-execution)
742
+ - [Tools with Secrets](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/tools/tools-with-secrets/)
743
+ - [Pattern Cookbook (9 group orchestrations)](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/pattern-cookbook/overview/)
744
+
745
+ ## Announcements
746
+
747
+ 🔥 🎉 **Nov 11, 2024:** We are evolving AutoGen into **AG2**!
748
+ A new organization [AG2AI](https://github.com/ag2ai) is created to host the development of AG2 and related projects with open governance. Check [AG2's new look](https://ag2.ai/).
749
+
750
+ 📄 **License:**
751
+ 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.
752
+
753
+ 🎉 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).
754
+
755
+ 🎉 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).
756
+
757
+ 🎉 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).
758
+
759
+ [More Announcements](announcements.md)
760
+
761
+ ## Code style and linting
762
+
763
+ This project uses pre-commit hooks to maintain code quality. Before contributing:
764
+
765
+ 1. Install pre-commit:
766
+
767
+ ```bash
768
+ pip install pre-commit
769
+ pre-commit install
770
+ ```
771
+
772
+ 2. The hooks will run automatically on commit, or you can run them manually:
773
+
774
+ ```bash
775
+ pre-commit run --all-files
776
+ ```
777
+
778
+ ## Related papers
779
+
780
+ - [AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation](https://arxiv.org/abs/2308.08155)
781
+
782
+ - [EcoOptiGen: Hyperparameter Optimization for Large Language Model Generation Inference](https://arxiv.org/abs/2303.04673)
783
+
784
+ - [MathChat: Converse to Tackle Challenging Math Problems with LLM Agents](https://arxiv.org/abs/2306.01337)
785
+
786
+ - [AgentOptimizer: Offline Training of Language Model Agents with Functions as Learnable Weights](https://arxiv.org/pdf/2402.11359)
787
+
788
+ - [StateFlow: Enhancing LLM Task-Solving through State-Driven Workflows](https://arxiv.org/abs/2403.11322)
789
+
790
+ ## Contributors Wall
791
+
792
+ <a href="https://github.com/ag2ai/ag2/graphs/contributors">
793
+ <img src="https://contrib.rocks/image?repo=ag2ai/ag2&max=204" />
794
+ </a>
795
+
796
+ ## Cite the project
797
+
798
+ ```
799
+ @software{AG2_2024,
800
+ author = {Chi Wang and Qingyun Wu and the AG2 Community},
801
+ title = {AG2: Open-Source AgentOS for AI Agents},
802
+ year = {2024},
803
+ url = {https://github.com/ag2ai/ag2},
804
+ note = {Available at https://docs.ag2.ai/},
805
+ version = {latest}
806
+ }
807
+ ```
808
+
809
+ ## License
810
+
811
+ This project is licensed under the [Apache License, Version 2.0 (Apache-2.0)](./LICENSE).
812
+
813
+ This project is a spin-off of [AutoGen](https://github.com/microsoft/autogen) and contains code under two licenses:
814
+
815
+ - 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.
816
+
817
+ - 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.
818
+
819
+ 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.