ag2 0.9.1a1__py3-none-any.whl → 0.9.1.post0__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.1a1.dist-info → ag2-0.9.1.post0.dist-info}/METADATA +264 -73
- ag2-0.9.1.post0.dist-info/RECORD +392 -0
- {ag2-0.9.1a1.dist-info → ag2-0.9.1.post0.dist-info}/WHEEL +1 -2
- autogen/__init__.py +89 -0
- autogen/_website/__init__.py +3 -0
- autogen/_website/generate_api_references.py +427 -0
- autogen/_website/generate_mkdocs.py +1174 -0
- autogen/_website/notebook_processor.py +476 -0
- autogen/_website/process_notebooks.py +656 -0
- autogen/_website/utils.py +412 -0
- autogen/agentchat/__init__.py +44 -0
- autogen/agentchat/agent.py +182 -0
- autogen/agentchat/assistant_agent.py +85 -0
- autogen/agentchat/chat.py +309 -0
- autogen/agentchat/contrib/__init__.py +5 -0
- autogen/agentchat/contrib/agent_eval/README.md +7 -0
- autogen/agentchat/contrib/agent_eval/agent_eval.py +108 -0
- autogen/agentchat/contrib/agent_eval/criterion.py +43 -0
- autogen/agentchat/contrib/agent_eval/critic_agent.py +44 -0
- autogen/agentchat/contrib/agent_eval/quantifier_agent.py +39 -0
- autogen/agentchat/contrib/agent_eval/subcritic_agent.py +45 -0
- autogen/agentchat/contrib/agent_eval/task.py +42 -0
- autogen/agentchat/contrib/agent_optimizer.py +429 -0
- autogen/agentchat/contrib/capabilities/__init__.py +5 -0
- autogen/agentchat/contrib/capabilities/agent_capability.py +20 -0
- autogen/agentchat/contrib/capabilities/generate_images.py +301 -0
- autogen/agentchat/contrib/capabilities/teachability.py +393 -0
- autogen/agentchat/contrib/capabilities/text_compressors.py +66 -0
- autogen/agentchat/contrib/capabilities/tools_capability.py +22 -0
- autogen/agentchat/contrib/capabilities/transform_messages.py +93 -0
- autogen/agentchat/contrib/capabilities/transforms.py +566 -0
- autogen/agentchat/contrib/capabilities/transforms_util.py +122 -0
- autogen/agentchat/contrib/capabilities/vision_capability.py +214 -0
- autogen/agentchat/contrib/captainagent/__init__.py +9 -0
- autogen/agentchat/contrib/captainagent/agent_builder.py +790 -0
- autogen/agentchat/contrib/captainagent/captainagent.py +512 -0
- autogen/agentchat/contrib/captainagent/tool_retriever.py +335 -0
- autogen/agentchat/contrib/captainagent/tools/README.md +44 -0
- autogen/agentchat/contrib/captainagent/tools/__init__.py +5 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_correlation.py +40 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_skewness_and_kurtosis.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_iqr.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_zscore.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/explore_csv.py +21 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/shapiro_wilk_test.py +30 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_download.py +27 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_search.py +53 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_image.py +53 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_text.py +38 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_wikipedia_text.py +21 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_youtube_caption.py +34 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/image_qa.py +60 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/optical_character_recognition.py +61 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/perform_web_search.py +47 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/scrape_wikipedia_tables.py +33 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/transcribe_audio_file.py +21 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/youtube_download.py +35 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_circle_area_from_diameter.py +21 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_day_of_the_week.py +18 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_fraction_sum.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_matrix_power.py +31 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_reflected_point.py +16 -0
- autogen/agentchat/contrib/captainagent/tools/math/complex_numbers_product.py +25 -0
- autogen/agentchat/contrib/captainagent/tools/math/compute_currency_conversion.py +23 -0
- autogen/agentchat/contrib/captainagent/tools/math/count_distinct_permutations.py +27 -0
- autogen/agentchat/contrib/captainagent/tools/math/evaluate_expression.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/math/find_continuity_point.py +34 -0
- autogen/agentchat/contrib/captainagent/tools/math/fraction_to_mixed_numbers.py +39 -0
- autogen/agentchat/contrib/captainagent/tools/math/modular_inverse_sum.py +23 -0
- autogen/agentchat/contrib/captainagent/tools/math/simplify_mixed_numbers.py +36 -0
- autogen/agentchat/contrib/captainagent/tools/math/sum_of_digit_factorials.py +15 -0
- autogen/agentchat/contrib/captainagent/tools/math/sum_of_primes_below.py +15 -0
- autogen/agentchat/contrib/captainagent/tools/requirements.txt +10 -0
- autogen/agentchat/contrib/captainagent/tools/tool_description.tsv +34 -0
- autogen/agentchat/contrib/gpt_assistant_agent.py +526 -0
- autogen/agentchat/contrib/graph_rag/__init__.py +9 -0
- autogen/agentchat/contrib/graph_rag/document.py +29 -0
- autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py +170 -0
- autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py +103 -0
- autogen/agentchat/contrib/graph_rag/graph_query_engine.py +53 -0
- autogen/agentchat/contrib/graph_rag/graph_rag_capability.py +63 -0
- autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py +268 -0
- autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py +83 -0
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py +210 -0
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py +93 -0
- autogen/agentchat/contrib/img_utils.py +397 -0
- autogen/agentchat/contrib/llamaindex_conversable_agent.py +117 -0
- autogen/agentchat/contrib/llava_agent.py +187 -0
- autogen/agentchat/contrib/math_user_proxy_agent.py +464 -0
- autogen/agentchat/contrib/multimodal_conversable_agent.py +125 -0
- autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +324 -0
- autogen/agentchat/contrib/rag/__init__.py +10 -0
- autogen/agentchat/contrib/rag/chromadb_query_engine.py +272 -0
- autogen/agentchat/contrib/rag/llamaindex_query_engine.py +198 -0
- autogen/agentchat/contrib/rag/mongodb_query_engine.py +329 -0
- autogen/agentchat/contrib/rag/query_engine.py +74 -0
- autogen/agentchat/contrib/retrieve_assistant_agent.py +56 -0
- autogen/agentchat/contrib/retrieve_user_proxy_agent.py +703 -0
- autogen/agentchat/contrib/society_of_mind_agent.py +199 -0
- autogen/agentchat/contrib/swarm_agent.py +1425 -0
- autogen/agentchat/contrib/text_analyzer_agent.py +79 -0
- autogen/agentchat/contrib/vectordb/__init__.py +5 -0
- autogen/agentchat/contrib/vectordb/base.py +232 -0
- autogen/agentchat/contrib/vectordb/chromadb.py +315 -0
- autogen/agentchat/contrib/vectordb/couchbase.py +407 -0
- autogen/agentchat/contrib/vectordb/mongodb.py +550 -0
- autogen/agentchat/contrib/vectordb/pgvectordb.py +928 -0
- autogen/agentchat/contrib/vectordb/qdrant.py +320 -0
- autogen/agentchat/contrib/vectordb/utils.py +126 -0
- autogen/agentchat/contrib/web_surfer.py +303 -0
- autogen/agentchat/conversable_agent.py +4020 -0
- autogen/agentchat/group/__init__.py +64 -0
- autogen/agentchat/group/available_condition.py +91 -0
- autogen/agentchat/group/context_condition.py +77 -0
- autogen/agentchat/group/context_expression.py +238 -0
- autogen/agentchat/group/context_str.py +41 -0
- autogen/agentchat/group/context_variables.py +192 -0
- autogen/agentchat/group/group_tool_executor.py +202 -0
- autogen/agentchat/group/group_utils.py +591 -0
- autogen/agentchat/group/handoffs.py +244 -0
- autogen/agentchat/group/llm_condition.py +93 -0
- autogen/agentchat/group/multi_agent_chat.py +237 -0
- autogen/agentchat/group/on_condition.py +58 -0
- autogen/agentchat/group/on_context_condition.py +54 -0
- autogen/agentchat/group/patterns/__init__.py +18 -0
- autogen/agentchat/group/patterns/auto.py +159 -0
- autogen/agentchat/group/patterns/manual.py +176 -0
- autogen/agentchat/group/patterns/pattern.py +288 -0
- autogen/agentchat/group/patterns/random.py +106 -0
- autogen/agentchat/group/patterns/round_robin.py +117 -0
- autogen/agentchat/group/reply_result.py +26 -0
- autogen/agentchat/group/speaker_selection_result.py +41 -0
- autogen/agentchat/group/targets/__init__.py +4 -0
- autogen/agentchat/group/targets/group_chat_target.py +132 -0
- autogen/agentchat/group/targets/group_manager_target.py +151 -0
- autogen/agentchat/group/targets/transition_target.py +413 -0
- autogen/agentchat/group/targets/transition_utils.py +6 -0
- autogen/agentchat/groupchat.py +1694 -0
- autogen/agentchat/realtime/__init__.py +3 -0
- autogen/agentchat/realtime/experimental/__init__.py +20 -0
- autogen/agentchat/realtime/experimental/audio_adapters/__init__.py +8 -0
- autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py +148 -0
- autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py +139 -0
- autogen/agentchat/realtime/experimental/audio_observer.py +42 -0
- autogen/agentchat/realtime/experimental/clients/__init__.py +15 -0
- autogen/agentchat/realtime/experimental/clients/gemini/__init__.py +7 -0
- autogen/agentchat/realtime/experimental/clients/gemini/client.py +274 -0
- autogen/agentchat/realtime/experimental/clients/oai/__init__.py +8 -0
- autogen/agentchat/realtime/experimental/clients/oai/base_client.py +220 -0
- autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py +243 -0
- autogen/agentchat/realtime/experimental/clients/oai/utils.py +48 -0
- autogen/agentchat/realtime/experimental/clients/realtime_client.py +190 -0
- autogen/agentchat/realtime/experimental/function_observer.py +85 -0
- autogen/agentchat/realtime/experimental/realtime_agent.py +158 -0
- autogen/agentchat/realtime/experimental/realtime_events.py +42 -0
- autogen/agentchat/realtime/experimental/realtime_observer.py +100 -0
- autogen/agentchat/realtime/experimental/realtime_swarm.py +475 -0
- autogen/agentchat/realtime/experimental/websockets.py +21 -0
- autogen/agentchat/realtime_agent/__init__.py +21 -0
- autogen/agentchat/user_proxy_agent.py +111 -0
- autogen/agentchat/utils.py +206 -0
- autogen/agents/__init__.py +3 -0
- autogen/agents/contrib/__init__.py +10 -0
- autogen/agents/contrib/time/__init__.py +8 -0
- autogen/agents/contrib/time/time_reply_agent.py +73 -0
- autogen/agents/contrib/time/time_tool_agent.py +51 -0
- autogen/agents/experimental/__init__.py +27 -0
- autogen/agents/experimental/deep_research/__init__.py +7 -0
- autogen/agents/experimental/deep_research/deep_research.py +52 -0
- autogen/agents/experimental/discord/__init__.py +7 -0
- autogen/agents/experimental/discord/discord.py +66 -0
- autogen/agents/experimental/document_agent/__init__.py +19 -0
- autogen/agents/experimental/document_agent/chroma_query_engine.py +316 -0
- autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py +118 -0
- autogen/agents/experimental/document_agent/document_agent.py +461 -0
- autogen/agents/experimental/document_agent/document_conditions.py +50 -0
- autogen/agents/experimental/document_agent/document_utils.py +380 -0
- autogen/agents/experimental/document_agent/inmemory_query_engine.py +220 -0
- autogen/agents/experimental/document_agent/parser_utils.py +130 -0
- autogen/agents/experimental/document_agent/url_utils.py +426 -0
- autogen/agents/experimental/reasoning/__init__.py +7 -0
- autogen/agents/experimental/reasoning/reasoning_agent.py +1178 -0
- autogen/agents/experimental/slack/__init__.py +7 -0
- autogen/agents/experimental/slack/slack.py +73 -0
- autogen/agents/experimental/telegram/__init__.py +7 -0
- autogen/agents/experimental/telegram/telegram.py +77 -0
- autogen/agents/experimental/websurfer/__init__.py +7 -0
- autogen/agents/experimental/websurfer/websurfer.py +62 -0
- autogen/agents/experimental/wikipedia/__init__.py +7 -0
- autogen/agents/experimental/wikipedia/wikipedia.py +90 -0
- autogen/browser_utils.py +309 -0
- autogen/cache/__init__.py +10 -0
- autogen/cache/abstract_cache_base.py +75 -0
- autogen/cache/cache.py +203 -0
- autogen/cache/cache_factory.py +88 -0
- autogen/cache/cosmos_db_cache.py +144 -0
- autogen/cache/disk_cache.py +102 -0
- autogen/cache/in_memory_cache.py +58 -0
- autogen/cache/redis_cache.py +123 -0
- autogen/code_utils.py +596 -0
- autogen/coding/__init__.py +22 -0
- autogen/coding/base.py +119 -0
- autogen/coding/docker_commandline_code_executor.py +268 -0
- autogen/coding/factory.py +47 -0
- autogen/coding/func_with_reqs.py +202 -0
- autogen/coding/jupyter/__init__.py +23 -0
- autogen/coding/jupyter/base.py +36 -0
- autogen/coding/jupyter/docker_jupyter_server.py +167 -0
- autogen/coding/jupyter/embedded_ipython_code_executor.py +182 -0
- autogen/coding/jupyter/import_utils.py +82 -0
- autogen/coding/jupyter/jupyter_client.py +231 -0
- autogen/coding/jupyter/jupyter_code_executor.py +160 -0
- autogen/coding/jupyter/local_jupyter_server.py +172 -0
- autogen/coding/local_commandline_code_executor.py +405 -0
- autogen/coding/markdown_code_extractor.py +45 -0
- autogen/coding/utils.py +56 -0
- autogen/doc_utils.py +34 -0
- autogen/events/__init__.py +7 -0
- autogen/events/agent_events.py +1010 -0
- autogen/events/base_event.py +99 -0
- autogen/events/client_events.py +167 -0
- autogen/events/helpers.py +36 -0
- autogen/events/print_event.py +46 -0
- autogen/exception_utils.py +73 -0
- autogen/extensions/__init__.py +5 -0
- autogen/fast_depends/__init__.py +16 -0
- autogen/fast_depends/_compat.py +80 -0
- autogen/fast_depends/core/__init__.py +14 -0
- autogen/fast_depends/core/build.py +225 -0
- autogen/fast_depends/core/model.py +576 -0
- autogen/fast_depends/dependencies/__init__.py +15 -0
- autogen/fast_depends/dependencies/model.py +29 -0
- autogen/fast_depends/dependencies/provider.py +39 -0
- autogen/fast_depends/library/__init__.py +10 -0
- autogen/fast_depends/library/model.py +46 -0
- autogen/fast_depends/py.typed +6 -0
- autogen/fast_depends/schema.py +66 -0
- autogen/fast_depends/use.py +280 -0
- autogen/fast_depends/utils.py +187 -0
- autogen/formatting_utils.py +83 -0
- autogen/function_utils.py +13 -0
- autogen/graph_utils.py +178 -0
- autogen/import_utils.py +526 -0
- autogen/interop/__init__.py +22 -0
- autogen/interop/crewai/__init__.py +7 -0
- autogen/interop/crewai/crewai.py +88 -0
- autogen/interop/interoperability.py +71 -0
- autogen/interop/interoperable.py +46 -0
- autogen/interop/langchain/__init__.py +8 -0
- autogen/interop/langchain/langchain_chat_model_factory.py +155 -0
- autogen/interop/langchain/langchain_tool.py +82 -0
- autogen/interop/litellm/__init__.py +7 -0
- autogen/interop/litellm/litellm_config_factory.py +113 -0
- autogen/interop/pydantic_ai/__init__.py +7 -0
- autogen/interop/pydantic_ai/pydantic_ai.py +168 -0
- autogen/interop/registry.py +69 -0
- autogen/io/__init__.py +15 -0
- autogen/io/base.py +151 -0
- autogen/io/console.py +56 -0
- autogen/io/processors/__init__.py +12 -0
- autogen/io/processors/base.py +21 -0
- autogen/io/processors/console_event_processor.py +56 -0
- autogen/io/run_response.py +293 -0
- autogen/io/thread_io_stream.py +63 -0
- autogen/io/websockets.py +213 -0
- autogen/json_utils.py +43 -0
- autogen/llm_config.py +379 -0
- autogen/logger/__init__.py +11 -0
- autogen/logger/base_logger.py +128 -0
- autogen/logger/file_logger.py +261 -0
- autogen/logger/logger_factory.py +42 -0
- autogen/logger/logger_utils.py +57 -0
- autogen/logger/sqlite_logger.py +523 -0
- autogen/math_utils.py +339 -0
- autogen/mcp/__init__.py +7 -0
- autogen/mcp/mcp_client.py +208 -0
- autogen/messages/__init__.py +7 -0
- autogen/messages/agent_messages.py +948 -0
- autogen/messages/base_message.py +107 -0
- autogen/messages/client_messages.py +171 -0
- autogen/messages/print_message.py +49 -0
- autogen/oai/__init__.py +53 -0
- autogen/oai/anthropic.py +714 -0
- autogen/oai/bedrock.py +628 -0
- autogen/oai/cerebras.py +299 -0
- autogen/oai/client.py +1435 -0
- autogen/oai/client_utils.py +169 -0
- autogen/oai/cohere.py +479 -0
- autogen/oai/gemini.py +990 -0
- autogen/oai/gemini_types.py +129 -0
- autogen/oai/groq.py +305 -0
- autogen/oai/mistral.py +303 -0
- autogen/oai/oai_models/__init__.py +11 -0
- autogen/oai/oai_models/_models.py +16 -0
- autogen/oai/oai_models/chat_completion.py +87 -0
- autogen/oai/oai_models/chat_completion_audio.py +32 -0
- autogen/oai/oai_models/chat_completion_message.py +86 -0
- autogen/oai/oai_models/chat_completion_message_tool_call.py +37 -0
- autogen/oai/oai_models/chat_completion_token_logprob.py +63 -0
- autogen/oai/oai_models/completion_usage.py +60 -0
- autogen/oai/ollama.py +643 -0
- autogen/oai/openai_utils.py +881 -0
- autogen/oai/together.py +370 -0
- autogen/retrieve_utils.py +491 -0
- autogen/runtime_logging.py +160 -0
- autogen/token_count_utils.py +267 -0
- autogen/tools/__init__.py +20 -0
- autogen/tools/contrib/__init__.py +9 -0
- autogen/tools/contrib/time/__init__.py +7 -0
- autogen/tools/contrib/time/time.py +41 -0
- autogen/tools/dependency_injection.py +254 -0
- autogen/tools/experimental/__init__.py +43 -0
- autogen/tools/experimental/browser_use/__init__.py +7 -0
- autogen/tools/experimental/browser_use/browser_use.py +161 -0
- autogen/tools/experimental/crawl4ai/__init__.py +7 -0
- autogen/tools/experimental/crawl4ai/crawl4ai.py +153 -0
- autogen/tools/experimental/deep_research/__init__.py +7 -0
- autogen/tools/experimental/deep_research/deep_research.py +328 -0
- autogen/tools/experimental/duckduckgo/__init__.py +7 -0
- autogen/tools/experimental/duckduckgo/duckduckgo_search.py +109 -0
- autogen/tools/experimental/google/__init__.py +14 -0
- autogen/tools/experimental/google/authentication/__init__.py +11 -0
- autogen/tools/experimental/google/authentication/credentials_hosted_provider.py +43 -0
- autogen/tools/experimental/google/authentication/credentials_local_provider.py +91 -0
- autogen/tools/experimental/google/authentication/credentials_provider.py +35 -0
- autogen/tools/experimental/google/drive/__init__.py +9 -0
- autogen/tools/experimental/google/drive/drive_functions.py +124 -0
- autogen/tools/experimental/google/drive/toolkit.py +88 -0
- autogen/tools/experimental/google/model.py +17 -0
- autogen/tools/experimental/google/toolkit_protocol.py +19 -0
- autogen/tools/experimental/google_search/__init__.py +8 -0
- autogen/tools/experimental/google_search/google_search.py +93 -0
- autogen/tools/experimental/google_search/youtube_search.py +181 -0
- autogen/tools/experimental/messageplatform/__init__.py +17 -0
- autogen/tools/experimental/messageplatform/discord/__init__.py +7 -0
- autogen/tools/experimental/messageplatform/discord/discord.py +288 -0
- autogen/tools/experimental/messageplatform/slack/__init__.py +7 -0
- autogen/tools/experimental/messageplatform/slack/slack.py +391 -0
- autogen/tools/experimental/messageplatform/telegram/__init__.py +7 -0
- autogen/tools/experimental/messageplatform/telegram/telegram.py +275 -0
- autogen/tools/experimental/perplexity/__init__.py +7 -0
- autogen/tools/experimental/perplexity/perplexity_search.py +260 -0
- autogen/tools/experimental/tavily/__init__.py +7 -0
- autogen/tools/experimental/tavily/tavily_search.py +183 -0
- autogen/tools/experimental/web_search_preview/__init__.py +7 -0
- autogen/tools/experimental/web_search_preview/web_search_preview.py +114 -0
- autogen/tools/experimental/wikipedia/__init__.py +7 -0
- autogen/tools/experimental/wikipedia/wikipedia.py +287 -0
- autogen/tools/function_utils.py +411 -0
- autogen/tools/tool.py +187 -0
- autogen/tools/toolkit.py +86 -0
- autogen/types.py +29 -0
- autogen/version.py +7 -0
- ag2-0.9.1a1.dist-info/RECORD +0 -6
- ag2-0.9.1a1.dist-info/top_level.txt +0 -1
- {ag2-0.9.1a1.dist-info → ag2-0.9.1.post0.dist-info/licenses}/LICENSE +0 -0
- {ag2-0.9.1a1.dist-info → ag2-0.9.1.post0.dist-info/licenses}/NOTICE.md +0 -0
|
@@ -1,130 +1,323 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ag2
|
|
3
|
-
Version: 0.9.
|
|
4
|
-
Summary:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
-
Classifier: Operating System :: OS Independent
|
|
13
|
-
Requires-Python: >=3.9,<3.14
|
|
14
|
-
Description-Content-Type: text/markdown
|
|
3
|
+
Version: 0.9.1.post0
|
|
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>
|
|
15
11
|
License-File: LICENSE
|
|
16
12
|
License-File: NOTICE.md
|
|
17
|
-
|
|
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.9
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
|
+
Classifier: Topic :: Software Development
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
30
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
31
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
32
|
+
Requires-Python: <3.14,>=3.9
|
|
33
|
+
Requires-Dist: anyio<5.0.0,>=3.0.0
|
|
34
|
+
Requires-Dist: asyncer==0.0.8
|
|
35
|
+
Requires-Dist: diskcache
|
|
36
|
+
Requires-Dist: docker
|
|
37
|
+
Requires-Dist: httpx<1,>=0.28.1
|
|
38
|
+
Requires-Dist: packaging
|
|
39
|
+
Requires-Dist: pydantic<3,>=2.6.1
|
|
40
|
+
Requires-Dist: python-dotenv
|
|
41
|
+
Requires-Dist: termcolor
|
|
42
|
+
Requires-Dist: tiktoken
|
|
18
43
|
Provides-Extra: anthropic
|
|
19
|
-
Requires-Dist:
|
|
44
|
+
Requires-Dist: anthropic[vertex]>=0.23.1; extra == 'anthropic'
|
|
20
45
|
Provides-Extra: autobuild
|
|
21
|
-
Requires-Dist:
|
|
46
|
+
Requires-Dist: chromadb; extra == 'autobuild'
|
|
47
|
+
Requires-Dist: huggingface-hub; extra == 'autobuild'
|
|
48
|
+
Requires-Dist: sentence-transformers<=4.1.0; extra == 'autobuild'
|
|
22
49
|
Provides-Extra: bedrock
|
|
23
|
-
Requires-Dist:
|
|
50
|
+
Requires-Dist: boto3>=1.34.149; extra == 'bedrock'
|
|
24
51
|
Provides-Extra: blendsearch
|
|
25
|
-
Requires-Dist:
|
|
52
|
+
Requires-Dist: flaml[blendsearch]; extra == 'blendsearch'
|
|
26
53
|
Provides-Extra: browser-use
|
|
27
|
-
Requires-Dist:
|
|
54
|
+
Requires-Dist: browser-use==0.1.37; extra == 'browser-use'
|
|
28
55
|
Provides-Extra: captainagent
|
|
29
|
-
Requires-Dist:
|
|
56
|
+
Requires-Dist: chromadb; extra == 'captainagent'
|
|
57
|
+
Requires-Dist: huggingface-hub; extra == 'captainagent'
|
|
58
|
+
Requires-Dist: pandas; extra == 'captainagent'
|
|
59
|
+
Requires-Dist: sentence-transformers<=4.1.0; extra == 'captainagent'
|
|
30
60
|
Provides-Extra: cerebras
|
|
31
|
-
Requires-Dist:
|
|
61
|
+
Requires-Dist: cerebras-cloud-sdk>=1.0.0; extra == 'cerebras'
|
|
32
62
|
Provides-Extra: cohere
|
|
33
|
-
Requires-Dist:
|
|
63
|
+
Requires-Dist: cohere>=5.13.5; extra == 'cohere'
|
|
34
64
|
Provides-Extra: commsagent-discord
|
|
35
|
-
Requires-Dist:
|
|
65
|
+
Requires-Dist: discord-py<2.6,>=2.4.0; extra == 'commsagent-discord'
|
|
36
66
|
Provides-Extra: commsagent-slack
|
|
37
|
-
Requires-Dist:
|
|
67
|
+
Requires-Dist: slack-sdk<3.40,>=3.33.0; extra == 'commsagent-slack'
|
|
38
68
|
Provides-Extra: commsagent-telegram
|
|
39
|
-
Requires-Dist:
|
|
69
|
+
Requires-Dist: telethon<2,>=1.38.1; extra == 'commsagent-telegram'
|
|
40
70
|
Provides-Extra: cosmosdb
|
|
41
|
-
Requires-Dist:
|
|
71
|
+
Requires-Dist: azure-cosmos>=4.2.0; extra == 'cosmosdb'
|
|
42
72
|
Provides-Extra: crawl4ai
|
|
43
|
-
Requires-Dist:
|
|
73
|
+
Requires-Dist: crawl4ai<0.5,>=0.4.247; extra == 'crawl4ai'
|
|
44
74
|
Provides-Extra: deepseek
|
|
45
|
-
Requires-Dist:
|
|
75
|
+
Requires-Dist: openai>=1.66.2; extra == 'deepseek'
|
|
46
76
|
Provides-Extra: dev
|
|
47
|
-
Requires-Dist:
|
|
77
|
+
Requires-Dist: cairosvg; extra == 'dev'
|
|
78
|
+
Requires-Dist: codespell==2.4.1; extra == 'dev'
|
|
79
|
+
Requires-Dist: detect-secrets==1.5.0; extra == 'dev'
|
|
80
|
+
Requires-Dist: dirty-equals==0.9.0; extra == 'dev'
|
|
81
|
+
Requires-Dist: fastapi==0.115.12; extra == 'dev'
|
|
82
|
+
Requires-Dist: ipykernel==6.29.5; extra == 'dev'
|
|
83
|
+
Requires-Dist: jinja2==3.1.6; extra == 'dev'
|
|
84
|
+
Requires-Dist: mdx-include==1.4.2; extra == 'dev'
|
|
85
|
+
Requires-Dist: mike==2.1.3; extra == 'dev'
|
|
86
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.3.0; extra == 'dev'
|
|
87
|
+
Requires-Dist: mkdocs-glightbox==0.4.0; extra == 'dev'
|
|
88
|
+
Requires-Dist: mkdocs-literate-nav==0.6.2; extra == 'dev'
|
|
89
|
+
Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'dev'
|
|
90
|
+
Requires-Dist: mkdocs-material==9.6.12; extra == 'dev'
|
|
91
|
+
Requires-Dist: mkdocs-minify-plugin==0.8.0; extra == 'dev'
|
|
92
|
+
Requires-Dist: mkdocs-redirects==1.2.2; extra == 'dev'
|
|
93
|
+
Requires-Dist: mkdocstrings[python]==0.29.1; extra == 'dev'
|
|
94
|
+
Requires-Dist: mock==5.2.0; extra == 'dev'
|
|
95
|
+
Requires-Dist: mypy==1.15.0; extra == 'dev'
|
|
96
|
+
Requires-Dist: nbclient==0.10.2; extra == 'dev'
|
|
97
|
+
Requires-Dist: nbconvert==7.16.6; extra == 'dev'
|
|
98
|
+
Requires-Dist: nbformat==5.10.4; extra == 'dev'
|
|
99
|
+
Requires-Dist: openai>=1.66.2; extra == 'dev'
|
|
100
|
+
Requires-Dist: pandas==2.2.3; extra == 'dev'
|
|
101
|
+
Requires-Dist: pdoc3==0.11.6; extra == 'dev'
|
|
102
|
+
Requires-Dist: pillow; extra == 'dev'
|
|
103
|
+
Requires-Dist: pre-commit==4.2.0; extra == 'dev'
|
|
104
|
+
Requires-Dist: pytest-asyncio==0.26.0; extra == 'dev'
|
|
105
|
+
Requires-Dist: pytest-cov==6.1.1; extra == 'dev'
|
|
106
|
+
Requires-Dist: pytest==8.3.5; extra == 'dev'
|
|
107
|
+
Requires-Dist: pyupgrade-directories==0.3.0; extra == 'dev'
|
|
108
|
+
Requires-Dist: pyyaml==6.0.2; extra == 'dev'
|
|
109
|
+
Requires-Dist: ruff==0.11.6; extra == 'dev'
|
|
110
|
+
Requires-Dist: termcolor==3.0.1; extra == 'dev'
|
|
111
|
+
Requires-Dist: toml==0.10.2; extra == 'dev'
|
|
112
|
+
Requires-Dist: typer==0.15.2; extra == 'dev'
|
|
113
|
+
Requires-Dist: uv==0.6.14; extra == 'dev'
|
|
48
114
|
Provides-Extra: docs
|
|
49
|
-
Requires-Dist:
|
|
115
|
+
Requires-Dist: cairosvg; extra == 'docs'
|
|
116
|
+
Requires-Dist: jinja2==3.1.6; extra == 'docs'
|
|
117
|
+
Requires-Dist: mdx-include==1.4.2; extra == 'docs'
|
|
118
|
+
Requires-Dist: mike==2.1.3; extra == 'docs'
|
|
119
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.3.0; extra == 'docs'
|
|
120
|
+
Requires-Dist: mkdocs-glightbox==0.4.0; extra == 'docs'
|
|
121
|
+
Requires-Dist: mkdocs-literate-nav==0.6.2; extra == 'docs'
|
|
122
|
+
Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'docs'
|
|
123
|
+
Requires-Dist: mkdocs-material==9.6.12; extra == 'docs'
|
|
124
|
+
Requires-Dist: mkdocs-minify-plugin==0.8.0; extra == 'docs'
|
|
125
|
+
Requires-Dist: mkdocs-redirects==1.2.2; extra == 'docs'
|
|
126
|
+
Requires-Dist: mkdocstrings[python]==0.29.1; extra == 'docs'
|
|
127
|
+
Requires-Dist: nbclient==0.10.2; extra == 'docs'
|
|
128
|
+
Requires-Dist: pdoc3==0.11.6; extra == 'docs'
|
|
129
|
+
Requires-Dist: pillow; extra == 'docs'
|
|
130
|
+
Requires-Dist: pyyaml==6.0.2; extra == 'docs'
|
|
131
|
+
Requires-Dist: termcolor==3.0.1; extra == 'docs'
|
|
132
|
+
Requires-Dist: typer==0.15.2; extra == 'docs'
|
|
50
133
|
Provides-Extra: flaml
|
|
51
|
-
Requires-Dist:
|
|
134
|
+
Requires-Dist: flaml; extra == 'flaml'
|
|
135
|
+
Requires-Dist: numpy<2.0.0,>=1.24.0; (python_version < '3.13') and extra == 'flaml'
|
|
136
|
+
Requires-Dist: numpy>=2.1; (python_version >= '3.13') and extra == 'flaml'
|
|
52
137
|
Provides-Extra: gemini
|
|
53
|
-
Requires-Dist:
|
|
138
|
+
Requires-Dist: google-api-core; extra == 'gemini'
|
|
139
|
+
Requires-Dist: google-auth; extra == 'gemini'
|
|
140
|
+
Requires-Dist: google-cloud-aiplatform; extra == 'gemini'
|
|
141
|
+
Requires-Dist: google-genai>=1.2.0; extra == 'gemini'
|
|
142
|
+
Requires-Dist: jsonschema; extra == 'gemini'
|
|
143
|
+
Requires-Dist: pillow; extra == 'gemini'
|
|
54
144
|
Provides-Extra: gemini-realtime
|
|
55
|
-
Requires-Dist:
|
|
145
|
+
Requires-Dist: google-api-core; extra == 'gemini-realtime'
|
|
146
|
+
Requires-Dist: google-auth; extra == 'gemini-realtime'
|
|
147
|
+
Requires-Dist: google-cloud-aiplatform; extra == 'gemini-realtime'
|
|
148
|
+
Requires-Dist: google-genai>=1.2.0; extra == 'gemini-realtime'
|
|
149
|
+
Requires-Dist: jsonschema; extra == 'gemini-realtime'
|
|
150
|
+
Requires-Dist: pillow; extra == 'gemini-realtime'
|
|
151
|
+
Requires-Dist: websockets<16,>=14.0; extra == 'gemini-realtime'
|
|
56
152
|
Provides-Extra: google-api
|
|
57
|
-
Requires-Dist:
|
|
153
|
+
Requires-Dist: google-api-python-client<3.0,>=2.163.0; extra == 'google-api'
|
|
154
|
+
Requires-Dist: google-auth-httplib2<0.3,>=0.2.0; extra == 'google-api'
|
|
155
|
+
Requires-Dist: google-auth-oauthlib<2.0,>=1.2.1; extra == 'google-api'
|
|
58
156
|
Provides-Extra: google-client
|
|
59
|
-
Requires-Dist:
|
|
157
|
+
Requires-Dist: google-api-python-client<3.0,>=2.163.0; extra == 'google-client'
|
|
60
158
|
Provides-Extra: google-search
|
|
61
|
-
Requires-Dist:
|
|
159
|
+
Requires-Dist: google-api-python-client<3.0,>=2.163.0; extra == 'google-search'
|
|
62
160
|
Provides-Extra: graph
|
|
63
|
-
Requires-Dist:
|
|
161
|
+
Requires-Dist: matplotlib; extra == 'graph'
|
|
162
|
+
Requires-Dist: networkx; extra == 'graph'
|
|
64
163
|
Provides-Extra: graph-rag-falkor-db
|
|
65
|
-
Requires-Dist:
|
|
164
|
+
Requires-Dist: falkordb>=1.0.10; extra == 'graph-rag-falkor-db'
|
|
165
|
+
Requires-Dist: graphrag-sdk==0.7.1; extra == 'graph-rag-falkor-db'
|
|
66
166
|
Provides-Extra: groq
|
|
67
|
-
Requires-Dist:
|
|
167
|
+
Requires-Dist: groq>=0.9.0; extra == 'groq'
|
|
68
168
|
Provides-Extra: interop
|
|
69
|
-
Requires-Dist:
|
|
169
|
+
Requires-Dist: crewai[tools]<1,>=0.76; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop'
|
|
170
|
+
Requires-Dist: langchain-community<1,>=0.3.12; extra == 'interop'
|
|
171
|
+
Requires-Dist: litellm<=1.67.1; extra == 'interop'
|
|
172
|
+
Requires-Dist: pydantic-ai==0.0.31; extra == 'interop'
|
|
173
|
+
Requires-Dist: weaviate-client<5,>=4; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop'
|
|
70
174
|
Provides-Extra: interop-crewai
|
|
71
|
-
Requires-Dist:
|
|
175
|
+
Requires-Dist: crewai[tools]<1,>=0.76; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop-crewai'
|
|
176
|
+
Requires-Dist: litellm<=1.67.1; extra == 'interop-crewai'
|
|
177
|
+
Requires-Dist: weaviate-client<5,>=4; (python_version >= '3.10' and python_version < '3.13') and extra == 'interop-crewai'
|
|
72
178
|
Provides-Extra: interop-langchain
|
|
73
|
-
Requires-Dist:
|
|
179
|
+
Requires-Dist: langchain-community<1,>=0.3.12; extra == 'interop-langchain'
|
|
74
180
|
Provides-Extra: interop-pydantic-ai
|
|
75
|
-
Requires-Dist:
|
|
181
|
+
Requires-Dist: pydantic-ai==0.0.31; extra == 'interop-pydantic-ai'
|
|
76
182
|
Provides-Extra: jupyter-executor
|
|
77
|
-
Requires-Dist:
|
|
183
|
+
Requires-Dist: ipykernel>=6.29.0; extra == 'jupyter-executor'
|
|
184
|
+
Requires-Dist: jupyter-client>=8.6.0; extra == 'jupyter-executor'
|
|
185
|
+
Requires-Dist: jupyter-kernel-gateway; extra == 'jupyter-executor'
|
|
186
|
+
Requires-Dist: requests; extra == 'jupyter-executor'
|
|
187
|
+
Requires-Dist: websocket-client; extra == 'jupyter-executor'
|
|
78
188
|
Provides-Extra: lint
|
|
79
|
-
Requires-Dist:
|
|
189
|
+
Requires-Dist: codespell==2.4.1; extra == 'lint'
|
|
190
|
+
Requires-Dist: pyupgrade-directories==0.3.0; extra == 'lint'
|
|
191
|
+
Requires-Dist: ruff==0.11.6; extra == 'lint'
|
|
80
192
|
Provides-Extra: lmm
|
|
81
|
-
Requires-Dist:
|
|
193
|
+
Requires-Dist: pillow; extra == 'lmm'
|
|
194
|
+
Requires-Dist: replicate; extra == 'lmm'
|
|
82
195
|
Provides-Extra: long-context
|
|
83
|
-
Requires-Dist:
|
|
196
|
+
Requires-Dist: llmlingua<0.3; extra == 'long-context'
|
|
84
197
|
Provides-Extra: mathchat
|
|
85
|
-
Requires-Dist:
|
|
198
|
+
Requires-Dist: sympy; extra == 'mathchat'
|
|
199
|
+
Requires-Dist: wolframalpha; extra == 'mathchat'
|
|
86
200
|
Provides-Extra: mcp
|
|
87
|
-
Requires-Dist:
|
|
201
|
+
Requires-Dist: mcp<1.6,>=1.4.0; (python_version >= '3.10') and extra == 'mcp'
|
|
88
202
|
Provides-Extra: mistral
|
|
89
|
-
Requires-Dist:
|
|
203
|
+
Requires-Dist: mistralai>=1.0.1; extra == 'mistral'
|
|
90
204
|
Provides-Extra: neo4j
|
|
91
|
-
Requires-Dist:
|
|
205
|
+
Requires-Dist: docx2txt==0.9; extra == 'neo4j'
|
|
206
|
+
Requires-Dist: llama-index-graph-stores-neo4j==0.4.6; extra == 'neo4j'
|
|
207
|
+
Requires-Dist: llama-index-readers-web==0.3.9; extra == 'neo4j'
|
|
208
|
+
Requires-Dist: llama-index<1,>=0.12; extra == 'neo4j'
|
|
92
209
|
Provides-Extra: ollama
|
|
93
|
-
Requires-Dist:
|
|
210
|
+
Requires-Dist: fix-busted-json>=0.0.18; extra == 'ollama'
|
|
211
|
+
Requires-Dist: ollama>=0.4.7; extra == 'ollama'
|
|
94
212
|
Provides-Extra: openai
|
|
95
|
-
Requires-Dist:
|
|
213
|
+
Requires-Dist: openai>=1.66.2; extra == 'openai'
|
|
96
214
|
Provides-Extra: openai-realtime
|
|
97
|
-
Requires-Dist:
|
|
215
|
+
Requires-Dist: openai>=1.66.2; extra == 'openai-realtime'
|
|
216
|
+
Requires-Dist: openai[realtime]; extra == 'openai-realtime'
|
|
98
217
|
Provides-Extra: rag
|
|
99
|
-
Requires-Dist:
|
|
218
|
+
Requires-Dist: chromadb<1,>=0.5; extra == 'rag'
|
|
219
|
+
Requires-Dist: docling<3,>=2.15.1; extra == 'rag'
|
|
220
|
+
Requires-Dist: llama-index-embeddings-huggingface==0.5.3; extra == 'rag'
|
|
221
|
+
Requires-Dist: llama-index-llms-langchain==0.6.1; extra == 'rag'
|
|
222
|
+
Requires-Dist: llama-index-vector-stores-chroma==0.4.1; extra == 'rag'
|
|
223
|
+
Requires-Dist: llama-index-vector-stores-mongodb==0.6.0; extra == 'rag'
|
|
224
|
+
Requires-Dist: llama-index<1,>=0.12; extra == 'rag'
|
|
225
|
+
Requires-Dist: requests<3,>=2.32.3; extra == 'rag'
|
|
226
|
+
Requires-Dist: selenium<5,>=4.28.1; extra == 'rag'
|
|
227
|
+
Requires-Dist: webdriver-manager==4.0.2; extra == 'rag'
|
|
100
228
|
Provides-Extra: redis
|
|
101
|
-
Requires-Dist:
|
|
229
|
+
Requires-Dist: redis; extra == 'redis'
|
|
102
230
|
Provides-Extra: retrievechat
|
|
103
|
-
Requires-Dist:
|
|
231
|
+
Requires-Dist: beautifulsoup4; extra == 'retrievechat'
|
|
232
|
+
Requires-Dist: chromadb==0.6.3; extra == 'retrievechat'
|
|
233
|
+
Requires-Dist: ipython; extra == 'retrievechat'
|
|
234
|
+
Requires-Dist: markdownify; extra == 'retrievechat'
|
|
235
|
+
Requires-Dist: protobuf==5.29.3; extra == 'retrievechat'
|
|
236
|
+
Requires-Dist: pypdf; extra == 'retrievechat'
|
|
237
|
+
Requires-Dist: sentence-transformers<=4.1.0; extra == 'retrievechat'
|
|
104
238
|
Provides-Extra: retrievechat-couchbase
|
|
105
|
-
Requires-Dist:
|
|
239
|
+
Requires-Dist: beautifulsoup4; extra == 'retrievechat-couchbase'
|
|
240
|
+
Requires-Dist: chromadb==0.6.3; extra == 'retrievechat-couchbase'
|
|
241
|
+
Requires-Dist: couchbase>=4.3.0; extra == 'retrievechat-couchbase'
|
|
242
|
+
Requires-Dist: ipython; extra == 'retrievechat-couchbase'
|
|
243
|
+
Requires-Dist: markdownify; extra == 'retrievechat-couchbase'
|
|
244
|
+
Requires-Dist: numpy; extra == 'retrievechat-couchbase'
|
|
245
|
+
Requires-Dist: protobuf==5.29.3; extra == 'retrievechat-couchbase'
|
|
246
|
+
Requires-Dist: pypdf; extra == 'retrievechat-couchbase'
|
|
247
|
+
Requires-Dist: sentence-transformers<=4.1.0; extra == 'retrievechat-couchbase'
|
|
106
248
|
Provides-Extra: retrievechat-mongodb
|
|
107
|
-
Requires-Dist:
|
|
249
|
+
Requires-Dist: beautifulsoup4; extra == 'retrievechat-mongodb'
|
|
250
|
+
Requires-Dist: chromadb==0.6.3; extra == 'retrievechat-mongodb'
|
|
251
|
+
Requires-Dist: ipython; extra == 'retrievechat-mongodb'
|
|
252
|
+
Requires-Dist: markdownify; extra == 'retrievechat-mongodb'
|
|
253
|
+
Requires-Dist: numpy; extra == 'retrievechat-mongodb'
|
|
254
|
+
Requires-Dist: protobuf==5.29.3; extra == 'retrievechat-mongodb'
|
|
255
|
+
Requires-Dist: pymongo>=4.0.0; extra == 'retrievechat-mongodb'
|
|
256
|
+
Requires-Dist: pypdf; extra == 'retrievechat-mongodb'
|
|
257
|
+
Requires-Dist: sentence-transformers<=4.1.0; extra == 'retrievechat-mongodb'
|
|
108
258
|
Provides-Extra: retrievechat-pgvector
|
|
109
|
-
Requires-Dist:
|
|
259
|
+
Requires-Dist: beautifulsoup4; extra == 'retrievechat-pgvector'
|
|
260
|
+
Requires-Dist: chromadb==0.6.3; extra == 'retrievechat-pgvector'
|
|
261
|
+
Requires-Dist: ipython; extra == 'retrievechat-pgvector'
|
|
262
|
+
Requires-Dist: markdownify; extra == 'retrievechat-pgvector'
|
|
263
|
+
Requires-Dist: pgvector>=0.2.5; extra == 'retrievechat-pgvector'
|
|
264
|
+
Requires-Dist: protobuf==5.29.3; extra == 'retrievechat-pgvector'
|
|
265
|
+
Requires-Dist: psycopg>=3.1.18; (platform_system == 'Linux') and extra == 'retrievechat-pgvector'
|
|
266
|
+
Requires-Dist: psycopg[binary]>=3.1.18; (platform_system == 'Windows' or platform_system == 'Darwin') and extra == 'retrievechat-pgvector'
|
|
267
|
+
Requires-Dist: pypdf; extra == 'retrievechat-pgvector'
|
|
268
|
+
Requires-Dist: sentence-transformers<=4.1.0; extra == 'retrievechat-pgvector'
|
|
110
269
|
Provides-Extra: retrievechat-qdrant
|
|
111
|
-
Requires-Dist:
|
|
270
|
+
Requires-Dist: beautifulsoup4; extra == 'retrievechat-qdrant'
|
|
271
|
+
Requires-Dist: chromadb==0.6.3; extra == 'retrievechat-qdrant'
|
|
272
|
+
Requires-Dist: fastembed>=0.3.1; extra == 'retrievechat-qdrant'
|
|
273
|
+
Requires-Dist: ipython; extra == 'retrievechat-qdrant'
|
|
274
|
+
Requires-Dist: markdownify; extra == 'retrievechat-qdrant'
|
|
275
|
+
Requires-Dist: protobuf==5.29.3; extra == 'retrievechat-qdrant'
|
|
276
|
+
Requires-Dist: pypdf; extra == 'retrievechat-qdrant'
|
|
277
|
+
Requires-Dist: qdrant-client; extra == 'retrievechat-qdrant'
|
|
278
|
+
Requires-Dist: sentence-transformers<=4.1.0; extra == 'retrievechat-qdrant'
|
|
112
279
|
Provides-Extra: teachable
|
|
113
|
-
Requires-Dist:
|
|
280
|
+
Requires-Dist: chromadb; extra == 'teachable'
|
|
114
281
|
Provides-Extra: test
|
|
115
|
-
Requires-Dist:
|
|
282
|
+
Requires-Dist: dirty-equals==0.9.0; extra == 'test'
|
|
283
|
+
Requires-Dist: fastapi==0.115.12; extra == 'test'
|
|
284
|
+
Requires-Dist: ipykernel==6.29.5; extra == 'test'
|
|
285
|
+
Requires-Dist: mock==5.2.0; extra == 'test'
|
|
286
|
+
Requires-Dist: nbconvert==7.16.6; extra == 'test'
|
|
287
|
+
Requires-Dist: nbformat==5.10.4; extra == 'test'
|
|
288
|
+
Requires-Dist: pandas==2.2.3; extra == 'test'
|
|
289
|
+
Requires-Dist: pytest-asyncio==0.26.0; extra == 'test'
|
|
290
|
+
Requires-Dist: pytest-cov==6.1.1; extra == 'test'
|
|
291
|
+
Requires-Dist: pytest==8.3.5; extra == 'test'
|
|
116
292
|
Provides-Extra: together
|
|
117
|
-
Requires-Dist:
|
|
293
|
+
Requires-Dist: together>=1.2; extra == 'together'
|
|
118
294
|
Provides-Extra: twilio
|
|
119
|
-
Requires-Dist:
|
|
295
|
+
Requires-Dist: fastapi<1,>=0.115.0; extra == 'twilio'
|
|
296
|
+
Requires-Dist: twilio>=9.3.2; extra == 'twilio'
|
|
297
|
+
Requires-Dist: uvicorn<1,>=0.30.6; extra == 'twilio'
|
|
120
298
|
Provides-Extra: types
|
|
121
|
-
Requires-Dist:
|
|
299
|
+
Requires-Dist: dirty-equals==0.9.0; extra == 'types'
|
|
300
|
+
Requires-Dist: fastapi==0.115.12; extra == 'types'
|
|
301
|
+
Requires-Dist: ipykernel==6.29.5; extra == 'types'
|
|
302
|
+
Requires-Dist: mock==5.2.0; extra == 'types'
|
|
303
|
+
Requires-Dist: mypy==1.15.0; extra == 'types'
|
|
304
|
+
Requires-Dist: nbconvert==7.16.6; extra == 'types'
|
|
305
|
+
Requires-Dist: nbformat==5.10.4; extra == 'types'
|
|
306
|
+
Requires-Dist: openai>=1.66.2; extra == 'types'
|
|
307
|
+
Requires-Dist: pandas==2.2.3; extra == 'types'
|
|
308
|
+
Requires-Dist: pytest-asyncio==0.26.0; extra == 'types'
|
|
309
|
+
Requires-Dist: pytest-cov==6.1.1; extra == 'types'
|
|
310
|
+
Requires-Dist: pytest==8.3.5; extra == 'types'
|
|
122
311
|
Provides-Extra: websockets
|
|
123
|
-
Requires-Dist:
|
|
312
|
+
Requires-Dist: websockets<16,>=14.0; extra == 'websockets'
|
|
124
313
|
Provides-Extra: websurfer
|
|
125
|
-
Requires-Dist:
|
|
314
|
+
Requires-Dist: beautifulsoup4; extra == 'websurfer'
|
|
315
|
+
Requires-Dist: markdownify; extra == 'websurfer'
|
|
316
|
+
Requires-Dist: pathvalidate; extra == 'websurfer'
|
|
317
|
+
Requires-Dist: pdfminer-six; extra == 'websurfer'
|
|
126
318
|
Provides-Extra: wikipedia
|
|
127
|
-
Requires-Dist:
|
|
319
|
+
Requires-Dist: wikipedia-api<1.0,>=0.8.1; extra == 'wikipedia'
|
|
320
|
+
Description-Content-Type: text/markdown
|
|
128
321
|
|
|
129
322
|
<a name="readme-top"></a>
|
|
130
323
|
|
|
@@ -133,7 +326,7 @@ Requires-Dist: pyautogen[wikipedia]==0.9.1a1; extra == "wikipedia"
|
|
|
133
326
|
<img src="https://raw.githubusercontent.com/ag2ai/ag2/27b37494a6f72b1f8050f6bd7be9a7ff232cf749/website/static/img/ag2.svg" width="150" title="hover text">
|
|
134
327
|
<br>
|
|
135
328
|
<br>
|
|
136
|
-
<img src="https://img.shields.io/pypi/dm/
|
|
329
|
+
<img src="https://img.shields.io/pypi/dm/ag2?label=PyPI%20downloads">
|
|
137
330
|
<a href="https://badge.fury.io/py/autogen"><img src="https://badge.fury.io/py/autogen.svg"></a>
|
|
138
331
|
<a href="https://github.com/ag2ai/ag2/actions/workflows/python-package.yml">
|
|
139
332
|
<img src="https://github.com/ag2ai/ag2/actions/workflows/python-package.yml/badge.svg">
|
|
@@ -193,7 +386,7 @@ For a step-by-step walk through of AG2 concepts and code, see [Basic Concepts](h
|
|
|
193
386
|
|
|
194
387
|
### Installation
|
|
195
388
|
|
|
196
|
-
AG2 requires **Python version >= 3.9, < 3.14**. AG2 is available via `ag2` (or its alias `
|
|
389
|
+
AG2 requires **Python version >= 3.9, < 3.14**. AG2 is available via `ag2` (or its alias `autogen`) on PyPI.
|
|
197
390
|
|
|
198
391
|
```bash
|
|
199
392
|
pip install ag2[openai]
|
|
@@ -558,5 +751,3 @@ This project is a spin-off of [AutoGen](https://github.com/microsoft/autogen) an
|
|
|
558
751
|
- 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.
|
|
559
752
|
|
|
560
753
|
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.
|
|
561
|
-
|
|
562
|
-
|