ag2 0.9.7__py3-none-any.whl → 0.9.9__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.
- {ag2-0.9.7.dist-info → ag2-0.9.9.dist-info}/METADATA +102 -75
- ag2-0.9.9.dist-info/RECORD +387 -0
- autogen/__init__.py +1 -2
- autogen/_website/generate_api_references.py +4 -5
- autogen/_website/generate_mkdocs.py +9 -15
- autogen/_website/notebook_processor.py +13 -14
- autogen/_website/process_notebooks.py +10 -10
- autogen/_website/utils.py +5 -4
- autogen/agentchat/agent.py +13 -13
- autogen/agentchat/assistant_agent.py +7 -6
- autogen/agentchat/contrib/agent_eval/agent_eval.py +3 -3
- autogen/agentchat/contrib/agent_eval/critic_agent.py +3 -3
- autogen/agentchat/contrib/agent_eval/quantifier_agent.py +3 -3
- autogen/agentchat/contrib/agent_eval/subcritic_agent.py +3 -3
- autogen/agentchat/contrib/agent_optimizer.py +3 -3
- autogen/agentchat/contrib/capabilities/generate_images.py +11 -11
- autogen/agentchat/contrib/capabilities/teachability.py +15 -15
- autogen/agentchat/contrib/capabilities/transforms.py +17 -18
- autogen/agentchat/contrib/capabilities/transforms_util.py +5 -5
- autogen/agentchat/contrib/capabilities/vision_capability.py +4 -3
- autogen/agentchat/contrib/captainagent/agent_builder.py +30 -30
- autogen/agentchat/contrib/captainagent/captainagent.py +22 -21
- autogen/agentchat/contrib/captainagent/tool_retriever.py +2 -3
- autogen/agentchat/contrib/gpt_assistant_agent.py +9 -9
- autogen/agentchat/contrib/graph_rag/document.py +3 -3
- autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py +3 -3
- autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py +6 -6
- autogen/agentchat/contrib/graph_rag/graph_query_engine.py +3 -3
- autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py +5 -11
- autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py +6 -6
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py +7 -7
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py +6 -6
- autogen/agentchat/contrib/img_utils.py +1 -1
- autogen/agentchat/contrib/llamaindex_conversable_agent.py +11 -11
- autogen/agentchat/contrib/llava_agent.py +18 -4
- autogen/agentchat/contrib/math_user_proxy_agent.py +11 -11
- autogen/agentchat/contrib/multimodal_conversable_agent.py +8 -8
- autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +6 -5
- autogen/agentchat/contrib/rag/chromadb_query_engine.py +22 -26
- autogen/agentchat/contrib/rag/llamaindex_query_engine.py +14 -17
- autogen/agentchat/contrib/rag/mongodb_query_engine.py +27 -37
- autogen/agentchat/contrib/rag/query_engine.py +7 -5
- autogen/agentchat/contrib/retrieve_assistant_agent.py +5 -5
- autogen/agentchat/contrib/retrieve_user_proxy_agent.py +8 -7
- autogen/agentchat/contrib/society_of_mind_agent.py +15 -14
- autogen/agentchat/contrib/swarm_agent.py +76 -98
- autogen/agentchat/contrib/text_analyzer_agent.py +7 -7
- autogen/agentchat/contrib/vectordb/base.py +10 -18
- autogen/agentchat/contrib/vectordb/chromadb.py +2 -1
- autogen/agentchat/contrib/vectordb/couchbase.py +18 -20
- autogen/agentchat/contrib/vectordb/mongodb.py +6 -5
- autogen/agentchat/contrib/vectordb/pgvectordb.py +40 -41
- autogen/agentchat/contrib/vectordb/qdrant.py +5 -5
- autogen/agentchat/contrib/web_surfer.py +20 -19
- autogen/agentchat/conversable_agent.py +292 -290
- autogen/agentchat/group/context_str.py +1 -3
- autogen/agentchat/group/context_variables.py +15 -25
- autogen/agentchat/group/group_tool_executor.py +10 -10
- autogen/agentchat/group/group_utils.py +15 -15
- autogen/agentchat/group/guardrails.py +7 -7
- autogen/agentchat/group/handoffs.py +19 -36
- autogen/agentchat/group/multi_agent_chat.py +7 -7
- autogen/agentchat/group/on_condition.py +4 -7
- autogen/agentchat/group/on_context_condition.py +4 -7
- autogen/agentchat/group/patterns/auto.py +8 -7
- autogen/agentchat/group/patterns/manual.py +7 -6
- autogen/agentchat/group/patterns/pattern.py +13 -12
- autogen/agentchat/group/patterns/random.py +3 -3
- autogen/agentchat/group/patterns/round_robin.py +3 -3
- autogen/agentchat/group/reply_result.py +2 -4
- autogen/agentchat/group/speaker_selection_result.py +5 -5
- autogen/agentchat/group/targets/group_chat_target.py +7 -6
- autogen/agentchat/group/targets/group_manager_target.py +4 -4
- autogen/agentchat/group/targets/transition_target.py +2 -1
- autogen/agentchat/groupchat.py +60 -63
- autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py +4 -4
- autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py +4 -4
- autogen/agentchat/realtime/experimental/clients/gemini/client.py +7 -7
- autogen/agentchat/realtime/experimental/clients/oai/base_client.py +8 -8
- autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py +6 -6
- autogen/agentchat/realtime/experimental/clients/realtime_client.py +10 -9
- autogen/agentchat/realtime/experimental/realtime_agent.py +10 -9
- autogen/agentchat/realtime/experimental/realtime_observer.py +3 -3
- autogen/agentchat/realtime/experimental/realtime_swarm.py +44 -44
- autogen/agentchat/user_proxy_agent.py +10 -9
- autogen/agentchat/utils.py +3 -3
- autogen/agents/contrib/time/time_reply_agent.py +6 -5
- autogen/agents/contrib/time/time_tool_agent.py +2 -1
- autogen/agents/experimental/deep_research/deep_research.py +3 -3
- autogen/agents/experimental/discord/discord.py +2 -2
- autogen/agents/experimental/document_agent/chroma_query_engine.py +29 -44
- autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py +9 -14
- autogen/agents/experimental/document_agent/document_agent.py +15 -16
- autogen/agents/experimental/document_agent/document_conditions.py +3 -3
- autogen/agents/experimental/document_agent/document_utils.py +5 -9
- autogen/agents/experimental/document_agent/inmemory_query_engine.py +14 -20
- autogen/agents/experimental/document_agent/parser_utils.py +4 -4
- autogen/agents/experimental/document_agent/url_utils.py +14 -23
- autogen/agents/experimental/reasoning/reasoning_agent.py +33 -33
- autogen/agents/experimental/slack/slack.py +2 -2
- autogen/agents/experimental/telegram/telegram.py +2 -3
- autogen/agents/experimental/websurfer/websurfer.py +4 -4
- autogen/agents/experimental/wikipedia/wikipedia.py +5 -7
- autogen/browser_utils.py +8 -8
- autogen/cache/abstract_cache_base.py +5 -5
- autogen/cache/cache.py +12 -12
- autogen/cache/cache_factory.py +4 -4
- autogen/cache/cosmos_db_cache.py +9 -9
- autogen/cache/disk_cache.py +6 -6
- autogen/cache/in_memory_cache.py +4 -4
- autogen/cache/redis_cache.py +4 -4
- autogen/code_utils.py +18 -18
- autogen/coding/base.py +6 -6
- autogen/coding/docker_commandline_code_executor.py +9 -9
- autogen/coding/func_with_reqs.py +7 -6
- autogen/coding/jupyter/base.py +3 -3
- autogen/coding/jupyter/docker_jupyter_server.py +3 -4
- autogen/coding/jupyter/import_utils.py +3 -3
- autogen/coding/jupyter/jupyter_client.py +5 -5
- autogen/coding/jupyter/jupyter_code_executor.py +3 -4
- autogen/coding/jupyter/local_jupyter_server.py +2 -6
- autogen/coding/local_commandline_code_executor.py +8 -7
- autogen/coding/markdown_code_extractor.py +1 -2
- autogen/coding/utils.py +1 -2
- autogen/doc_utils.py +3 -2
- autogen/environments/docker_python_environment.py +19 -29
- autogen/environments/python_environment.py +8 -17
- autogen/environments/system_python_environment.py +3 -4
- autogen/environments/venv_python_environment.py +8 -12
- autogen/environments/working_directory.py +1 -2
- autogen/events/agent_events.py +106 -109
- autogen/events/base_event.py +6 -5
- autogen/events/client_events.py +15 -14
- autogen/events/helpers.py +1 -1
- autogen/events/print_event.py +4 -5
- autogen/fast_depends/_compat.py +10 -15
- autogen/fast_depends/core/build.py +17 -36
- autogen/fast_depends/core/model.py +64 -113
- autogen/fast_depends/dependencies/model.py +2 -1
- autogen/fast_depends/dependencies/provider.py +3 -2
- autogen/fast_depends/library/model.py +4 -4
- autogen/fast_depends/schema.py +7 -7
- autogen/fast_depends/use.py +17 -25
- autogen/fast_depends/utils.py +10 -30
- autogen/formatting_utils.py +6 -6
- autogen/graph_utils.py +1 -4
- autogen/import_utils.py +38 -27
- autogen/interop/crewai/crewai.py +2 -2
- autogen/interop/interoperable.py +2 -2
- autogen/interop/langchain/langchain_chat_model_factory.py +3 -2
- autogen/interop/langchain/langchain_tool.py +2 -6
- autogen/interop/litellm/litellm_config_factory.py +6 -7
- autogen/interop/pydantic_ai/pydantic_ai.py +4 -7
- autogen/interop/registry.py +2 -1
- autogen/io/base.py +5 -5
- autogen/io/run_response.py +33 -32
- autogen/io/websockets.py +6 -5
- autogen/json_utils.py +1 -2
- autogen/llm_config/__init__.py +11 -0
- autogen/llm_config/client.py +58 -0
- autogen/llm_config/config.py +384 -0
- autogen/llm_config/entry.py +154 -0
- autogen/logger/base_logger.py +4 -3
- autogen/logger/file_logger.py +2 -1
- autogen/logger/logger_factory.py +2 -2
- autogen/logger/logger_utils.py +2 -2
- autogen/logger/sqlite_logger.py +2 -1
- autogen/math_utils.py +4 -5
- autogen/mcp/__main__.py +6 -6
- autogen/mcp/helpers.py +4 -4
- autogen/mcp/mcp_client.py +170 -29
- autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py +3 -4
- autogen/mcp/mcp_proxy/mcp_proxy.py +23 -26
- autogen/mcp/mcp_proxy/operation_grouping.py +4 -5
- autogen/mcp/mcp_proxy/operation_renaming.py +6 -10
- autogen/mcp/mcp_proxy/security.py +2 -3
- autogen/messages/agent_messages.py +96 -98
- autogen/messages/base_message.py +6 -5
- autogen/messages/client_messages.py +15 -14
- autogen/messages/print_message.py +4 -5
- autogen/oai/__init__.py +1 -2
- autogen/oai/anthropic.py +42 -41
- autogen/oai/bedrock.py +68 -57
- autogen/oai/cerebras.py +26 -25
- autogen/oai/client.py +113 -139
- autogen/oai/client_utils.py +3 -3
- autogen/oai/cohere.py +34 -11
- autogen/oai/gemini.py +39 -17
- autogen/oai/gemini_types.py +11 -12
- autogen/oai/groq.py +22 -10
- autogen/oai/mistral.py +17 -11
- autogen/oai/oai_models/__init__.py +14 -2
- autogen/oai/oai_models/_models.py +2 -2
- autogen/oai/oai_models/chat_completion.py +13 -14
- autogen/oai/oai_models/chat_completion_message.py +11 -9
- autogen/oai/oai_models/chat_completion_message_tool_call.py +26 -3
- autogen/oai/oai_models/chat_completion_token_logprob.py +3 -4
- autogen/oai/oai_models/completion_usage.py +8 -9
- autogen/oai/ollama.py +19 -9
- autogen/oai/openai_responses.py +40 -17
- autogen/oai/openai_utils.py +48 -38
- autogen/oai/together.py +29 -14
- autogen/retrieve_utils.py +6 -7
- autogen/runtime_logging.py +5 -4
- autogen/token_count_utils.py +7 -4
- autogen/tools/contrib/time/time.py +0 -1
- autogen/tools/dependency_injection.py +5 -6
- autogen/tools/experimental/browser_use/browser_use.py +10 -10
- autogen/tools/experimental/code_execution/python_code_execution.py +5 -7
- autogen/tools/experimental/crawl4ai/crawl4ai.py +12 -15
- autogen/tools/experimental/deep_research/deep_research.py +9 -8
- autogen/tools/experimental/duckduckgo/duckduckgo_search.py +5 -11
- autogen/tools/experimental/firecrawl/firecrawl_tool.py +98 -115
- autogen/tools/experimental/google/authentication/credentials_local_provider.py +1 -1
- autogen/tools/experimental/google/drive/drive_functions.py +4 -4
- autogen/tools/experimental/google/drive/toolkit.py +5 -5
- autogen/tools/experimental/google_search/google_search.py +5 -5
- autogen/tools/experimental/google_search/youtube_search.py +5 -5
- autogen/tools/experimental/messageplatform/discord/discord.py +8 -12
- autogen/tools/experimental/messageplatform/slack/slack.py +14 -20
- autogen/tools/experimental/messageplatform/telegram/telegram.py +8 -12
- autogen/tools/experimental/perplexity/perplexity_search.py +18 -29
- autogen/tools/experimental/reliable/reliable.py +68 -74
- autogen/tools/experimental/searxng/searxng_search.py +20 -19
- autogen/tools/experimental/tavily/tavily_search.py +12 -19
- autogen/tools/experimental/web_search_preview/web_search_preview.py +13 -7
- autogen/tools/experimental/wikipedia/wikipedia.py +7 -10
- autogen/tools/function_utils.py +7 -7
- autogen/tools/tool.py +8 -6
- autogen/types.py +2 -2
- autogen/version.py +1 -1
- ag2-0.9.7.dist-info/RECORD +0 -421
- autogen/llm_config.py +0 -385
- {ag2-0.9.7.dist-info → ag2-0.9.9.dist-info}/WHEEL +0 -0
- {ag2-0.9.7.dist-info → ag2-0.9.9.dist-info}/licenses/LICENSE +0 -0
- {ag2-0.9.7.dist-info → ag2-0.9.9.dist-info}/licenses/NOTICE.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ag2
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.9
|
|
4
4
|
Summary: A programming framework for agentic AI
|
|
5
5
|
Project-URL: Homepage, https://ag2.ai/
|
|
6
6
|
Project-URL: Documentation, https://docs.ag2.ai
|
|
@@ -19,7 +19,6 @@ Classifier: Operating System :: OS Independent
|
|
|
19
19
|
Classifier: Programming Language :: Python
|
|
20
20
|
Classifier: Programming Language :: Python :: 3
|
|
21
21
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -29,7 +28,7 @@ Classifier: Topic :: Software Development
|
|
|
29
28
|
Classifier: Topic :: Software Development :: Libraries
|
|
30
29
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
31
30
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
32
|
-
Requires-Python: <3.14,>=3.
|
|
31
|
+
Requires-Python: <3.14,>=3.10
|
|
33
32
|
Requires-Dist: anyio<5.0.0,>=3.0.0
|
|
34
33
|
Requires-Dist: asyncer==0.0.8
|
|
35
34
|
Requires-Dist: diskcache
|
|
@@ -45,7 +44,7 @@ Requires-Dist: anthropic[vertex]>=0.23.1; extra == 'anthropic'
|
|
|
45
44
|
Provides-Extra: autobuild
|
|
46
45
|
Requires-Dist: chromadb; extra == 'autobuild'
|
|
47
46
|
Requires-Dist: huggingface-hub; extra == 'autobuild'
|
|
48
|
-
Requires-Dist: sentence-transformers<=
|
|
47
|
+
Requires-Dist: sentence-transformers<=5.1.0; extra == 'autobuild'
|
|
49
48
|
Provides-Extra: bedrock
|
|
50
49
|
Requires-Dist: boto3>=1.34.149; extra == 'bedrock'
|
|
51
50
|
Provides-Extra: blendsearch
|
|
@@ -56,7 +55,7 @@ Provides-Extra: captainagent
|
|
|
56
55
|
Requires-Dist: chromadb; extra == 'captainagent'
|
|
57
56
|
Requires-Dist: huggingface-hub; extra == 'captainagent'
|
|
58
57
|
Requires-Dist: pandas; extra == 'captainagent'
|
|
59
|
-
Requires-Dist: sentence-transformers<=
|
|
58
|
+
Requires-Dist: sentence-transformers<=5.1.0; extra == 'captainagent'
|
|
60
59
|
Provides-Extra: cerebras
|
|
61
60
|
Requires-Dist: cerebras-cloud-sdk>=1.0.0; extra == 'cerebras'
|
|
62
61
|
Provides-Extra: cohere
|
|
@@ -70,66 +69,74 @@ Requires-Dist: telethon<2,>=1.38.1; extra == 'commsagent-telegram'
|
|
|
70
69
|
Provides-Extra: cosmosdb
|
|
71
70
|
Requires-Dist: azure-cosmos>=4.2.0; extra == 'cosmosdb'
|
|
72
71
|
Provides-Extra: crawl4ai
|
|
73
|
-
Requires-Dist: crawl4ai<0.
|
|
72
|
+
Requires-Dist: crawl4ai<0.8,>=0.4.247; extra == 'crawl4ai'
|
|
74
73
|
Provides-Extra: deepseek
|
|
75
|
-
Requires-Dist: openai>=1.
|
|
74
|
+
Requires-Dist: openai>=1.99.3; extra == 'deepseek'
|
|
76
75
|
Provides-Extra: dev
|
|
77
76
|
Requires-Dist: cairosvg; extra == 'dev'
|
|
78
77
|
Requires-Dist: codespell==2.4.1; extra == 'dev'
|
|
79
78
|
Requires-Dist: detect-secrets==1.5.0; extra == 'dev'
|
|
80
79
|
Requires-Dist: dirty-equals==0.9.0; extra == 'dev'
|
|
81
|
-
Requires-Dist: fastapi==0.
|
|
82
|
-
Requires-Dist: ipykernel==6.
|
|
80
|
+
Requires-Dist: fastapi==0.116.1; extra == 'dev'
|
|
81
|
+
Requires-Dist: ipykernel==6.30.1; extra == 'dev'
|
|
83
82
|
Requires-Dist: jinja2==3.1.6; extra == 'dev'
|
|
83
|
+
Requires-Dist: mcp>=1.11.0; extra == 'dev'
|
|
84
84
|
Requires-Dist: mdx-include==1.4.2; extra == 'dev'
|
|
85
85
|
Requires-Dist: mike==2.1.3; extra == 'dev'
|
|
86
|
-
Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.
|
|
86
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.4.7; extra == 'dev'
|
|
87
87
|
Requires-Dist: mkdocs-glightbox==0.4.0; extra == 'dev'
|
|
88
88
|
Requires-Dist: mkdocs-literate-nav==0.6.2; extra == 'dev'
|
|
89
89
|
Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'dev'
|
|
90
|
-
Requires-Dist: mkdocs-material==9.6.
|
|
90
|
+
Requires-Dist: mkdocs-material==9.6.16; extra == 'dev'
|
|
91
91
|
Requires-Dist: mkdocs-minify-plugin==0.8.0; extra == 'dev'
|
|
92
92
|
Requires-Dist: mkdocs-redirects==1.2.2; extra == 'dev'
|
|
93
|
-
Requires-Dist: mkdocstrings[python]==0.
|
|
93
|
+
Requires-Dist: mkdocstrings[python]==0.30.0; extra == 'dev'
|
|
94
94
|
Requires-Dist: mock==5.2.0; extra == 'dev'
|
|
95
|
-
Requires-Dist: mypy==1.
|
|
95
|
+
Requires-Dist: mypy==1.17.1; extra == 'dev'
|
|
96
96
|
Requires-Dist: nbclient==0.10.2; extra == 'dev'
|
|
97
97
|
Requires-Dist: nbconvert==7.16.6; extra == 'dev'
|
|
98
98
|
Requires-Dist: nbformat==5.10.4; extra == 'dev'
|
|
99
|
-
Requires-Dist: openai>=1.
|
|
100
|
-
Requires-Dist: pandas==2.
|
|
99
|
+
Requires-Dist: openai>=1.99.3; extra == 'dev'
|
|
100
|
+
Requires-Dist: pandas==2.3.1; extra == 'dev'
|
|
101
101
|
Requires-Dist: pdoc3==0.11.6; extra == 'dev'
|
|
102
102
|
Requires-Dist: pillow; extra == 'dev'
|
|
103
|
-
Requires-Dist: pre-commit==4.
|
|
104
|
-
Requires-Dist: pytest-asyncio==
|
|
105
|
-
Requires-Dist: pytest-cov==6.
|
|
106
|
-
Requires-Dist: pytest==8.
|
|
103
|
+
Requires-Dist: pre-commit==4.3.0; extra == 'dev'
|
|
104
|
+
Requires-Dist: pytest-asyncio==1.1.0; extra == 'dev'
|
|
105
|
+
Requires-Dist: pytest-cov==6.2.1; extra == 'dev'
|
|
106
|
+
Requires-Dist: pytest==8.4.1; extra == 'dev'
|
|
107
107
|
Requires-Dist: pyupgrade-directories==0.3.0; extra == 'dev'
|
|
108
108
|
Requires-Dist: pyyaml==6.0.2; extra == 'dev'
|
|
109
|
-
Requires-Dist: ruff==0.
|
|
110
|
-
Requires-Dist: termcolor==3.0
|
|
109
|
+
Requires-Dist: ruff==0.12.8; extra == 'dev'
|
|
110
|
+
Requires-Dist: termcolor==3.1.0; extra == 'dev'
|
|
111
111
|
Requires-Dist: toml==0.10.2; extra == 'dev'
|
|
112
|
-
Requires-Dist: typer==0.
|
|
113
|
-
Requires-Dist:
|
|
112
|
+
Requires-Dist: typer==0.16.0; extra == 'dev'
|
|
113
|
+
Requires-Dist: types-decorator; extra == 'dev'
|
|
114
|
+
Requires-Dist: types-pycurl; extra == 'dev'
|
|
115
|
+
Requires-Dist: types-python-dateutil; extra == 'dev'
|
|
116
|
+
Requires-Dist: types-pyyaml; extra == 'dev'
|
|
117
|
+
Requires-Dist: types-requests; extra == 'dev'
|
|
118
|
+
Requires-Dist: types-ujson; extra == 'dev'
|
|
119
|
+
Requires-Dist: uv==0.8.8; extra == 'dev'
|
|
114
120
|
Provides-Extra: docs
|
|
115
121
|
Requires-Dist: cairosvg; extra == 'docs'
|
|
116
122
|
Requires-Dist: jinja2==3.1.6; extra == 'docs'
|
|
123
|
+
Requires-Dist: mcp>=1.11.0; extra == 'docs'
|
|
117
124
|
Requires-Dist: mdx-include==1.4.2; extra == 'docs'
|
|
118
125
|
Requires-Dist: mike==2.1.3; extra == 'docs'
|
|
119
|
-
Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.
|
|
126
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.4.7; extra == 'docs'
|
|
120
127
|
Requires-Dist: mkdocs-glightbox==0.4.0; extra == 'docs'
|
|
121
128
|
Requires-Dist: mkdocs-literate-nav==0.6.2; extra == 'docs'
|
|
122
129
|
Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'docs'
|
|
123
|
-
Requires-Dist: mkdocs-material==9.6.
|
|
130
|
+
Requires-Dist: mkdocs-material==9.6.16; extra == 'docs'
|
|
124
131
|
Requires-Dist: mkdocs-minify-plugin==0.8.0; extra == 'docs'
|
|
125
132
|
Requires-Dist: mkdocs-redirects==1.2.2; extra == 'docs'
|
|
126
|
-
Requires-Dist: mkdocstrings[python]==0.
|
|
133
|
+
Requires-Dist: mkdocstrings[python]==0.30.0; extra == 'docs'
|
|
127
134
|
Requires-Dist: nbclient==0.10.2; extra == 'docs'
|
|
128
135
|
Requires-Dist: pdoc3==0.11.6; extra == 'docs'
|
|
129
136
|
Requires-Dist: pillow; extra == 'docs'
|
|
130
137
|
Requires-Dist: pyyaml==6.0.2; extra == 'docs'
|
|
131
|
-
Requires-Dist: termcolor==3.0
|
|
132
|
-
Requires-Dist: typer==0.
|
|
138
|
+
Requires-Dist: termcolor==3.1.0; extra == 'docs'
|
|
139
|
+
Requires-Dist: typer==0.16.0; extra == 'docs'
|
|
133
140
|
Provides-Extra: duckduckgo
|
|
134
141
|
Requires-Dist: duckduckgo-search>=8.0.2; extra == 'duckduckgo'
|
|
135
142
|
Provides-Extra: flaml
|
|
@@ -170,17 +177,17 @@ Requires-Dist: groq>=0.9.0; extra == 'groq'
|
|
|
170
177
|
Provides-Extra: interop
|
|
171
178
|
Requires-Dist: crewai[tools]<1,>=0.76; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop'
|
|
172
179
|
Requires-Dist: langchain-community<1,>=0.3.12; extra == 'interop'
|
|
173
|
-
Requires-Dist: litellm<=1.
|
|
174
|
-
Requires-Dist: pydantic-ai==0.
|
|
180
|
+
Requires-Dist: litellm<=1.75.5.post1; extra == 'interop'
|
|
181
|
+
Requires-Dist: pydantic-ai==0.6.2; extra == 'interop'
|
|
175
182
|
Requires-Dist: weaviate-client<5,>=4; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop'
|
|
176
183
|
Provides-Extra: interop-crewai
|
|
177
184
|
Requires-Dist: crewai[tools]<1,>=0.76; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop-crewai'
|
|
178
|
-
Requires-Dist: litellm<=1.
|
|
185
|
+
Requires-Dist: litellm<=1.75.5.post1; extra == 'interop-crewai'
|
|
179
186
|
Requires-Dist: weaviate-client<5,>=4; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop-crewai'
|
|
180
187
|
Provides-Extra: interop-langchain
|
|
181
188
|
Requires-Dist: langchain-community<1,>=0.3.12; extra == 'interop-langchain'
|
|
182
189
|
Provides-Extra: interop-pydantic-ai
|
|
183
|
-
Requires-Dist: pydantic-ai==0.
|
|
190
|
+
Requires-Dist: pydantic-ai==0.6.2; extra == 'interop-pydantic-ai'
|
|
184
191
|
Provides-Extra: jupyter-executor
|
|
185
192
|
Requires-Dist: ipykernel>=6.29.0; extra == 'jupyter-executor'
|
|
186
193
|
Requires-Dist: jupyter-client>=8.6.0; extra == 'jupyter-executor'
|
|
@@ -190,7 +197,7 @@ Requires-Dist: websocket-client; extra == 'jupyter-executor'
|
|
|
190
197
|
Provides-Extra: lint
|
|
191
198
|
Requires-Dist: codespell==2.4.1; extra == 'lint'
|
|
192
199
|
Requires-Dist: pyupgrade-directories==0.3.0; extra == 'lint'
|
|
193
|
-
Requires-Dist: ruff==0.
|
|
200
|
+
Requires-Dist: ruff==0.12.8; extra == 'lint'
|
|
194
201
|
Provides-Extra: lmm
|
|
195
202
|
Requires-Dist: pillow; extra == 'lmm'
|
|
196
203
|
Requires-Dist: replicate; extra == 'lmm'
|
|
@@ -200,7 +207,7 @@ Provides-Extra: mathchat
|
|
|
200
207
|
Requires-Dist: sympy; extra == 'mathchat'
|
|
201
208
|
Requires-Dist: wolframalpha; extra == 'mathchat'
|
|
202
209
|
Provides-Extra: mcp
|
|
203
|
-
Requires-Dist: mcp>=1.
|
|
210
|
+
Requires-Dist: mcp>=1.11.0; extra == 'mcp'
|
|
204
211
|
Provides-Extra: mcp-proxy-gen
|
|
205
212
|
Requires-Dist: fastapi-code-generator>=0.5.4; extra == 'mcp-proxy-gen'
|
|
206
213
|
Requires-Dist: fastapi<1,>=0.112; extra == 'mcp-proxy-gen'
|
|
@@ -211,24 +218,24 @@ Provides-Extra: mistral
|
|
|
211
218
|
Requires-Dist: mistralai>=1.0.1; extra == 'mistral'
|
|
212
219
|
Provides-Extra: neo4j
|
|
213
220
|
Requires-Dist: docx2txt==0.9; extra == 'neo4j'
|
|
214
|
-
Requires-Dist: llama-index-graph-stores-neo4j==0.
|
|
215
|
-
Requires-Dist: llama-index-readers-web==0.
|
|
221
|
+
Requires-Dist: llama-index-graph-stores-neo4j==0.5.0; extra == 'neo4j'
|
|
222
|
+
Requires-Dist: llama-index-readers-web==0.5.0; extra == 'neo4j'
|
|
216
223
|
Requires-Dist: llama-index<1,>=0.12; extra == 'neo4j'
|
|
217
224
|
Provides-Extra: ollama
|
|
218
225
|
Requires-Dist: fix-busted-json>=0.0.18; extra == 'ollama'
|
|
219
226
|
Requires-Dist: ollama>=0.4.7; extra == 'ollama'
|
|
220
227
|
Provides-Extra: openai
|
|
221
|
-
Requires-Dist: openai>=1.
|
|
228
|
+
Requires-Dist: openai>=1.99.3; extra == 'openai'
|
|
222
229
|
Provides-Extra: openai-realtime
|
|
223
|
-
Requires-Dist: openai>=1.
|
|
230
|
+
Requires-Dist: openai>=1.99.3; extra == 'openai-realtime'
|
|
224
231
|
Requires-Dist: openai[realtime]; extra == 'openai-realtime'
|
|
225
232
|
Provides-Extra: rag
|
|
226
|
-
Requires-Dist: chromadb<
|
|
233
|
+
Requires-Dist: chromadb<2,>=0.5; extra == 'rag'
|
|
227
234
|
Requires-Dist: docling<3,>=2.15.1; extra == 'rag'
|
|
228
|
-
Requires-Dist: llama-index-embeddings-huggingface==0.
|
|
229
|
-
Requires-Dist: llama-index-llms-langchain==0.
|
|
235
|
+
Requires-Dist: llama-index-embeddings-huggingface==0.6.0; extra == 'rag'
|
|
236
|
+
Requires-Dist: llama-index-llms-langchain==0.7.0; extra == 'rag'
|
|
230
237
|
Requires-Dist: llama-index-vector-stores-chroma==0.4.1; extra == 'rag'
|
|
231
|
-
Requires-Dist: llama-index-vector-stores-mongodb==0.
|
|
238
|
+
Requires-Dist: llama-index-vector-stores-mongodb==0.8.0; extra == 'rag'
|
|
232
239
|
Requires-Dist: llama-index<1,>=0.12; extra == 'rag'
|
|
233
240
|
Requires-Dist: requests<3,>=2.32.3; extra == 'rag'
|
|
234
241
|
Requires-Dist: selenium<5,>=4.28.1; extra == 'rag'
|
|
@@ -237,68 +244,69 @@ Provides-Extra: redis
|
|
|
237
244
|
Requires-Dist: redis; extra == 'redis'
|
|
238
245
|
Provides-Extra: retrievechat
|
|
239
246
|
Requires-Dist: beautifulsoup4; extra == 'retrievechat'
|
|
240
|
-
Requires-Dist: chromadb==0.
|
|
247
|
+
Requires-Dist: chromadb==1.0.16; extra == 'retrievechat'
|
|
241
248
|
Requires-Dist: ipython; extra == 'retrievechat'
|
|
242
249
|
Requires-Dist: markdownify; extra == 'retrievechat'
|
|
243
|
-
Requires-Dist: protobuf==
|
|
250
|
+
Requires-Dist: protobuf==6.31.1; extra == 'retrievechat'
|
|
244
251
|
Requires-Dist: pypdf; extra == 'retrievechat'
|
|
245
|
-
Requires-Dist: sentence-transformers<=
|
|
252
|
+
Requires-Dist: sentence-transformers<=5.1.0; extra == 'retrievechat'
|
|
246
253
|
Provides-Extra: retrievechat-couchbase
|
|
247
254
|
Requires-Dist: beautifulsoup4; extra == 'retrievechat-couchbase'
|
|
248
|
-
Requires-Dist: chromadb==0.
|
|
255
|
+
Requires-Dist: chromadb==1.0.16; extra == 'retrievechat-couchbase'
|
|
249
256
|
Requires-Dist: couchbase>=4.3.0; extra == 'retrievechat-couchbase'
|
|
250
257
|
Requires-Dist: ipython; extra == 'retrievechat-couchbase'
|
|
251
258
|
Requires-Dist: markdownify; extra == 'retrievechat-couchbase'
|
|
252
259
|
Requires-Dist: numpy; extra == 'retrievechat-couchbase'
|
|
253
|
-
Requires-Dist: protobuf==
|
|
260
|
+
Requires-Dist: protobuf==6.31.1; extra == 'retrievechat-couchbase'
|
|
254
261
|
Requires-Dist: pypdf; extra == 'retrievechat-couchbase'
|
|
255
|
-
Requires-Dist: sentence-transformers<=
|
|
262
|
+
Requires-Dist: sentence-transformers<=5.1.0; extra == 'retrievechat-couchbase'
|
|
256
263
|
Provides-Extra: retrievechat-mongodb
|
|
257
264
|
Requires-Dist: beautifulsoup4; extra == 'retrievechat-mongodb'
|
|
258
|
-
Requires-Dist: chromadb==0.
|
|
265
|
+
Requires-Dist: chromadb==1.0.16; extra == 'retrievechat-mongodb'
|
|
259
266
|
Requires-Dist: ipython; extra == 'retrievechat-mongodb'
|
|
260
267
|
Requires-Dist: markdownify; extra == 'retrievechat-mongodb'
|
|
261
268
|
Requires-Dist: numpy; extra == 'retrievechat-mongodb'
|
|
262
|
-
Requires-Dist: protobuf==
|
|
269
|
+
Requires-Dist: protobuf==6.31.1; extra == 'retrievechat-mongodb'
|
|
263
270
|
Requires-Dist: pymongo>=4.0.0; extra == 'retrievechat-mongodb'
|
|
264
271
|
Requires-Dist: pypdf; extra == 'retrievechat-mongodb'
|
|
265
|
-
Requires-Dist: sentence-transformers<=
|
|
272
|
+
Requires-Dist: sentence-transformers<=5.1.0; extra == 'retrievechat-mongodb'
|
|
266
273
|
Provides-Extra: retrievechat-pgvector
|
|
267
274
|
Requires-Dist: beautifulsoup4; extra == 'retrievechat-pgvector'
|
|
268
|
-
Requires-Dist: chromadb==0.
|
|
275
|
+
Requires-Dist: chromadb==1.0.16; extra == 'retrievechat-pgvector'
|
|
269
276
|
Requires-Dist: ipython; extra == 'retrievechat-pgvector'
|
|
270
277
|
Requires-Dist: markdownify; extra == 'retrievechat-pgvector'
|
|
271
278
|
Requires-Dist: pgvector>=0.2.5; extra == 'retrievechat-pgvector'
|
|
272
|
-
Requires-Dist: protobuf==
|
|
279
|
+
Requires-Dist: protobuf==6.31.1; extra == 'retrievechat-pgvector'
|
|
273
280
|
Requires-Dist: psycopg>=3.1.18; (platform_system == 'Linux') and extra == 'retrievechat-pgvector'
|
|
274
281
|
Requires-Dist: psycopg[binary]>=3.1.18; (platform_system == 'Windows' or platform_system == 'Darwin') and extra == 'retrievechat-pgvector'
|
|
275
282
|
Requires-Dist: pypdf; extra == 'retrievechat-pgvector'
|
|
276
|
-
Requires-Dist: sentence-transformers<=
|
|
283
|
+
Requires-Dist: sentence-transformers<=5.1.0; extra == 'retrievechat-pgvector'
|
|
277
284
|
Provides-Extra: retrievechat-qdrant
|
|
278
285
|
Requires-Dist: beautifulsoup4; extra == 'retrievechat-qdrant'
|
|
279
|
-
Requires-Dist: chromadb==0.
|
|
286
|
+
Requires-Dist: chromadb==1.0.16; extra == 'retrievechat-qdrant'
|
|
280
287
|
Requires-Dist: fastembed>=0.3.1; extra == 'retrievechat-qdrant'
|
|
281
288
|
Requires-Dist: ipython; extra == 'retrievechat-qdrant'
|
|
282
289
|
Requires-Dist: markdownify; extra == 'retrievechat-qdrant'
|
|
283
|
-
Requires-Dist: protobuf==
|
|
290
|
+
Requires-Dist: protobuf==6.31.1; extra == 'retrievechat-qdrant'
|
|
284
291
|
Requires-Dist: pypdf; extra == 'retrievechat-qdrant'
|
|
285
292
|
Requires-Dist: qdrant-client; extra == 'retrievechat-qdrant'
|
|
286
|
-
Requires-Dist: sentence-transformers<=
|
|
293
|
+
Requires-Dist: sentence-transformers<=5.1.0; extra == 'retrievechat-qdrant'
|
|
287
294
|
Provides-Extra: tavily
|
|
288
295
|
Requires-Dist: tavily-python>=0.7.4; extra == 'tavily'
|
|
289
296
|
Provides-Extra: teachable
|
|
290
297
|
Requires-Dist: chromadb; extra == 'teachable'
|
|
291
298
|
Provides-Extra: test
|
|
292
299
|
Requires-Dist: dirty-equals==0.9.0; extra == 'test'
|
|
293
|
-
Requires-Dist: fastapi==0.
|
|
294
|
-
Requires-Dist: ipykernel==6.
|
|
300
|
+
Requires-Dist: fastapi==0.116.1; extra == 'test'
|
|
301
|
+
Requires-Dist: ipykernel==6.30.1; extra == 'test'
|
|
302
|
+
Requires-Dist: mcp>=1.11.0; extra == 'test'
|
|
295
303
|
Requires-Dist: mock==5.2.0; extra == 'test'
|
|
296
304
|
Requires-Dist: nbconvert==7.16.6; extra == 'test'
|
|
297
305
|
Requires-Dist: nbformat==5.10.4; extra == 'test'
|
|
298
|
-
Requires-Dist: pandas==2.
|
|
299
|
-
Requires-Dist: pytest-asyncio==
|
|
300
|
-
Requires-Dist: pytest-cov==6.
|
|
301
|
-
Requires-Dist: pytest==8.
|
|
306
|
+
Requires-Dist: pandas==2.3.1; extra == 'test'
|
|
307
|
+
Requires-Dist: pytest-asyncio==1.1.0; extra == 'test'
|
|
308
|
+
Requires-Dist: pytest-cov==6.2.1; extra == 'test'
|
|
309
|
+
Requires-Dist: pytest==8.4.1; extra == 'test'
|
|
302
310
|
Provides-Extra: together
|
|
303
311
|
Requires-Dist: together>=1.2; extra == 'together'
|
|
304
312
|
Provides-Extra: twilio
|
|
@@ -307,17 +315,24 @@ Requires-Dist: twilio>=9.3.2; extra == 'twilio'
|
|
|
307
315
|
Requires-Dist: uvicorn<1,>=0.30.6; extra == 'twilio'
|
|
308
316
|
Provides-Extra: types
|
|
309
317
|
Requires-Dist: dirty-equals==0.9.0; extra == 'types'
|
|
310
|
-
Requires-Dist: fastapi==0.
|
|
311
|
-
Requires-Dist: ipykernel==6.
|
|
318
|
+
Requires-Dist: fastapi==0.116.1; extra == 'types'
|
|
319
|
+
Requires-Dist: ipykernel==6.30.1; extra == 'types'
|
|
320
|
+
Requires-Dist: mcp>=1.11.0; extra == 'types'
|
|
312
321
|
Requires-Dist: mock==5.2.0; extra == 'types'
|
|
313
|
-
Requires-Dist: mypy==1.
|
|
322
|
+
Requires-Dist: mypy==1.17.1; extra == 'types'
|
|
314
323
|
Requires-Dist: nbconvert==7.16.6; extra == 'types'
|
|
315
324
|
Requires-Dist: nbformat==5.10.4; extra == 'types'
|
|
316
|
-
Requires-Dist: openai>=1.
|
|
317
|
-
Requires-Dist: pandas==2.
|
|
318
|
-
Requires-Dist: pytest-asyncio==
|
|
319
|
-
Requires-Dist: pytest-cov==6.
|
|
320
|
-
Requires-Dist: pytest==8.
|
|
325
|
+
Requires-Dist: openai>=1.99.3; extra == 'types'
|
|
326
|
+
Requires-Dist: pandas==2.3.1; extra == 'types'
|
|
327
|
+
Requires-Dist: pytest-asyncio==1.1.0; extra == 'types'
|
|
328
|
+
Requires-Dist: pytest-cov==6.2.1; extra == 'types'
|
|
329
|
+
Requires-Dist: pytest==8.4.1; extra == 'types'
|
|
330
|
+
Requires-Dist: types-decorator; extra == 'types'
|
|
331
|
+
Requires-Dist: types-pycurl; extra == 'types'
|
|
332
|
+
Requires-Dist: types-python-dateutil; extra == 'types'
|
|
333
|
+
Requires-Dist: types-pyyaml; extra == 'types'
|
|
334
|
+
Requires-Dist: types-requests; extra == 'types'
|
|
335
|
+
Requires-Dist: types-ujson; extra == 'types'
|
|
321
336
|
Provides-Extra: websockets
|
|
322
337
|
Requires-Dist: websockets<16,>=14.0; extra == 'websockets'
|
|
323
338
|
Provides-Extra: websurfer
|
|
@@ -334,17 +349,29 @@ Description-Content-Type: text/markdown
|
|
|
334
349
|
<p align="center">
|
|
335
350
|
<!-- The image URL points to the GitHub-hosted content, ensuring it displays correctly on the PyPI website.-->
|
|
336
351
|
<img src="https://raw.githubusercontent.com/ag2ai/ag2/27b37494a6f72b1f8050f6bd7be9a7ff232cf749/website/static/img/ag2.svg" width="150" title="hover text">
|
|
352
|
+
|
|
337
353
|
<br>
|
|
338
354
|
<br>
|
|
339
|
-
|
|
340
|
-
<a href="https://
|
|
355
|
+
|
|
356
|
+
<a href="https://www.pepy.tech/projects/ag2">
|
|
357
|
+
<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"/>
|
|
358
|
+
</a>
|
|
359
|
+
|
|
360
|
+
<a href="https://pypi.org/project/autogen/">
|
|
361
|
+
<img src="https://img.shields.io/pypi/v/ag2?label=PyPI&color=green">
|
|
362
|
+
</a>
|
|
363
|
+
|
|
364
|
+
<img src="https://img.shields.io/pypi/pyversions/ag2.svg?label=">
|
|
365
|
+
|
|
341
366
|
<a href="https://github.com/ag2ai/ag2/actions/workflows/python-package.yml">
|
|
342
367
|
<img src="https://github.com/ag2ai/ag2/actions/workflows/python-package.yml/badge.svg">
|
|
343
368
|
</a>
|
|
344
|
-
<img src="https://img.shields.io/badge/3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue">
|
|
345
369
|
<a href="https://discord.gg/pAbnFJrkgZ">
|
|
346
370
|
<img src="https://img.shields.io/discord/1153072414184452236?logo=discord&style=flat">
|
|
347
371
|
</a>
|
|
372
|
+
|
|
373
|
+
<br>
|
|
374
|
+
|
|
348
375
|
<a href="https://x.com/ag2oss">
|
|
349
376
|
<img src="https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40ag2ai">
|
|
350
377
|
</a>
|
|
@@ -396,7 +423,7 @@ For a step-by-step walk through of AG2 concepts and code, see [Basic Concepts](h
|
|
|
396
423
|
|
|
397
424
|
### Installation
|
|
398
425
|
|
|
399
|
-
AG2 requires **Python version >= 3.
|
|
426
|
+
AG2 requires **Python version >= 3.10, < 3.14**. AG2 is available via `ag2` (or its alias `autogen`) on PyPI.
|
|
400
427
|
|
|
401
428
|
```bash
|
|
402
429
|
pip install ag2[openai]
|