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.
- ag2-0.10.2.dist-info/METADATA +819 -0
- ag2-0.10.2.dist-info/RECORD +423 -0
- ag2-0.10.2.dist-info/WHEEL +4 -0
- ag2-0.10.2.dist-info/licenses/LICENSE +201 -0
- ag2-0.10.2.dist-info/licenses/NOTICE.md +19 -0
- autogen/__init__.py +88 -0
- autogen/_website/__init__.py +3 -0
- autogen/_website/generate_api_references.py +426 -0
- autogen/_website/generate_mkdocs.py +1216 -0
- autogen/_website/notebook_processor.py +475 -0
- autogen/_website/process_notebooks.py +656 -0
- autogen/_website/utils.py +413 -0
- autogen/a2a/__init__.py +36 -0
- autogen/a2a/agent_executor.py +86 -0
- autogen/a2a/client.py +357 -0
- autogen/a2a/errors.py +18 -0
- autogen/a2a/httpx_client_factory.py +79 -0
- autogen/a2a/server.py +221 -0
- autogen/a2a/utils.py +207 -0
- autogen/agentchat/__init__.py +47 -0
- autogen/agentchat/agent.py +180 -0
- autogen/agentchat/assistant_agent.py +86 -0
- autogen/agentchat/chat.py +325 -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 +432 -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 +578 -0
- autogen/agentchat/contrib/capabilities/transforms_util.py +122 -0
- autogen/agentchat/contrib/capabilities/vision_capability.py +215 -0
- autogen/agentchat/contrib/captainagent/__init__.py +9 -0
- autogen/agentchat/contrib/captainagent/agent_builder.py +790 -0
- autogen/agentchat/contrib/captainagent/captainagent.py +514 -0
- autogen/agentchat/contrib/captainagent/tool_retriever.py +334 -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 +167 -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 +263 -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 +189 -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 +325 -0
- autogen/agentchat/contrib/rag/__init__.py +10 -0
- autogen/agentchat/contrib/rag/chromadb_query_engine.py +268 -0
- autogen/agentchat/contrib/rag/llamaindex_query_engine.py +195 -0
- autogen/agentchat/contrib/rag/mongodb_query_engine.py +319 -0
- autogen/agentchat/contrib/rag/query_engine.py +76 -0
- autogen/agentchat/contrib/retrieve_assistant_agent.py +59 -0
- autogen/agentchat/contrib/retrieve_user_proxy_agent.py +704 -0
- autogen/agentchat/contrib/society_of_mind_agent.py +200 -0
- autogen/agentchat/contrib/swarm_agent.py +1404 -0
- autogen/agentchat/contrib/text_analyzer_agent.py +79 -0
- autogen/agentchat/contrib/vectordb/__init__.py +5 -0
- autogen/agentchat/contrib/vectordb/base.py +224 -0
- autogen/agentchat/contrib/vectordb/chromadb.py +316 -0
- autogen/agentchat/contrib/vectordb/couchbase.py +405 -0
- autogen/agentchat/contrib/vectordb/mongodb.py +551 -0
- autogen/agentchat/contrib/vectordb/pgvectordb.py +927 -0
- autogen/agentchat/contrib/vectordb/qdrant.py +320 -0
- autogen/agentchat/contrib/vectordb/utils.py +126 -0
- autogen/agentchat/contrib/web_surfer.py +304 -0
- autogen/agentchat/conversable_agent.py +4307 -0
- autogen/agentchat/group/__init__.py +67 -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 +39 -0
- autogen/agentchat/group/context_variables.py +182 -0
- autogen/agentchat/group/events/transition_events.py +111 -0
- autogen/agentchat/group/group_tool_executor.py +324 -0
- autogen/agentchat/group/group_utils.py +659 -0
- autogen/agentchat/group/guardrails.py +179 -0
- autogen/agentchat/group/handoffs.py +303 -0
- autogen/agentchat/group/llm_condition.py +93 -0
- autogen/agentchat/group/multi_agent_chat.py +291 -0
- autogen/agentchat/group/on_condition.py +55 -0
- autogen/agentchat/group/on_context_condition.py +51 -0
- autogen/agentchat/group/patterns/__init__.py +18 -0
- autogen/agentchat/group/patterns/auto.py +160 -0
- autogen/agentchat/group/patterns/manual.py +177 -0
- autogen/agentchat/group/patterns/pattern.py +295 -0
- autogen/agentchat/group/patterns/random.py +106 -0
- autogen/agentchat/group/patterns/round_robin.py +117 -0
- autogen/agentchat/group/reply_result.py +24 -0
- autogen/agentchat/group/safeguards/__init__.py +21 -0
- autogen/agentchat/group/safeguards/api.py +241 -0
- autogen/agentchat/group/safeguards/enforcer.py +1158 -0
- autogen/agentchat/group/safeguards/events.py +140 -0
- autogen/agentchat/group/safeguards/validator.py +435 -0
- autogen/agentchat/group/speaker_selection_result.py +41 -0
- autogen/agentchat/group/targets/__init__.py +4 -0
- autogen/agentchat/group/targets/function_target.py +245 -0
- autogen/agentchat/group/targets/group_chat_target.py +133 -0
- autogen/agentchat/group/targets/group_manager_target.py +151 -0
- autogen/agentchat/group/targets/transition_target.py +424 -0
- autogen/agentchat/group/targets/transition_utils.py +6 -0
- autogen/agentchat/groupchat.py +1832 -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 +191 -0
- autogen/agentchat/realtime/experimental/function_observer.py +84 -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 +533 -0
- autogen/agentchat/realtime/experimental/websockets.py +21 -0
- autogen/agentchat/realtime_agent/__init__.py +21 -0
- autogen/agentchat/user_proxy_agent.py +114 -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 +74 -0
- autogen/agents/contrib/time/time_tool_agent.py +52 -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 +301 -0
- autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py +113 -0
- autogen/agents/experimental/document_agent/document_agent.py +643 -0
- autogen/agents/experimental/document_agent/document_conditions.py +50 -0
- autogen/agents/experimental/document_agent/document_utils.py +376 -0
- autogen/agents/experimental/document_agent/inmemory_query_engine.py +214 -0
- autogen/agents/experimental/document_agent/parser_utils.py +134 -0
- autogen/agents/experimental/document_agent/url_utils.py +417 -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 +76 -0
- autogen/agents/experimental/websurfer/__init__.py +7 -0
- autogen/agents/experimental/websurfer/websurfer.py +70 -0
- autogen/agents/experimental/wikipedia/__init__.py +7 -0
- autogen/agents/experimental/wikipedia/wikipedia.py +88 -0
- autogen/browser_utils.py +309 -0
- autogen/cache/__init__.py +10 -0
- autogen/cache/abstract_cache_base.py +71 -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 +97 -0
- autogen/cache/in_memory_cache.py +54 -0
- autogen/cache/redis_cache.py +119 -0
- autogen/code_utils.py +598 -0
- autogen/coding/__init__.py +30 -0
- autogen/coding/base.py +120 -0
- autogen/coding/docker_commandline_code_executor.py +283 -0
- autogen/coding/factory.py +56 -0
- autogen/coding/func_with_reqs.py +203 -0
- autogen/coding/jupyter/__init__.py +23 -0
- autogen/coding/jupyter/base.py +36 -0
- autogen/coding/jupyter/docker_jupyter_server.py +160 -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 +224 -0
- autogen/coding/jupyter/jupyter_code_executor.py +154 -0
- autogen/coding/jupyter/local_jupyter_server.py +164 -0
- autogen/coding/local_commandline_code_executor.py +341 -0
- autogen/coding/markdown_code_extractor.py +44 -0
- autogen/coding/utils.py +55 -0
- autogen/coding/yepcode_code_executor.py +197 -0
- autogen/doc_utils.py +35 -0
- autogen/environments/__init__.py +10 -0
- autogen/environments/docker_python_environment.py +365 -0
- autogen/environments/python_environment.py +125 -0
- autogen/environments/system_python_environment.py +85 -0
- autogen/environments/venv_python_environment.py +220 -0
- autogen/environments/working_directory.py +74 -0
- autogen/events/__init__.py +7 -0
- autogen/events/agent_events.py +1016 -0
- autogen/events/base_event.py +100 -0
- autogen/events/client_events.py +168 -0
- autogen/events/helpers.py +44 -0
- autogen/events/print_event.py +45 -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 +75 -0
- autogen/fast_depends/core/__init__.py +14 -0
- autogen/fast_depends/core/build.py +206 -0
- autogen/fast_depends/core/model.py +527 -0
- autogen/fast_depends/dependencies/__init__.py +15 -0
- autogen/fast_depends/dependencies/model.py +30 -0
- autogen/fast_depends/dependencies/provider.py +40 -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 +272 -0
- autogen/fast_depends/utils.py +177 -0
- autogen/formatting_utils.py +83 -0
- autogen/function_utils.py +13 -0
- autogen/graph_utils.py +173 -0
- autogen/import_utils.py +539 -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 +156 -0
- autogen/interop/langchain/langchain_tool.py +78 -0
- autogen/interop/litellm/__init__.py +7 -0
- autogen/interop/litellm/litellm_config_factory.py +178 -0
- autogen/interop/pydantic_ai/__init__.py +7 -0
- autogen/interop/pydantic_ai/pydantic_ai.py +172 -0
- autogen/interop/registry.py +70 -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 +61 -0
- autogen/io/run_response.py +294 -0
- autogen/io/thread_io_stream.py +63 -0
- autogen/io/websockets.py +214 -0
- autogen/json_utils.py +42 -0
- autogen/llm_clients/MIGRATION_TO_V2.md +782 -0
- autogen/llm_clients/__init__.py +77 -0
- autogen/llm_clients/client_v2.py +122 -0
- autogen/llm_clients/models/__init__.py +55 -0
- autogen/llm_clients/models/content_blocks.py +389 -0
- autogen/llm_clients/models/unified_message.py +145 -0
- autogen/llm_clients/models/unified_response.py +83 -0
- autogen/llm_clients/openai_completions_client.py +444 -0
- autogen/llm_config/__init__.py +11 -0
- autogen/llm_config/client.py +59 -0
- autogen/llm_config/config.py +461 -0
- autogen/llm_config/entry.py +169 -0
- autogen/llm_config/types.py +37 -0
- autogen/llm_config/utils.py +223 -0
- autogen/logger/__init__.py +11 -0
- autogen/logger/base_logger.py +129 -0
- autogen/logger/file_logger.py +262 -0
- autogen/logger/logger_factory.py +42 -0
- autogen/logger/logger_utils.py +57 -0
- autogen/logger/sqlite_logger.py +524 -0
- autogen/math_utils.py +338 -0
- autogen/mcp/__init__.py +7 -0
- autogen/mcp/__main__.py +78 -0
- autogen/mcp/helpers.py +45 -0
- autogen/mcp/mcp_client.py +349 -0
- autogen/mcp/mcp_proxy/__init__.py +19 -0
- autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py +62 -0
- autogen/mcp/mcp_proxy/mcp_proxy.py +577 -0
- autogen/mcp/mcp_proxy/operation_grouping.py +166 -0
- autogen/mcp/mcp_proxy/operation_renaming.py +110 -0
- autogen/mcp/mcp_proxy/patch_fastapi_code_generator.py +98 -0
- autogen/mcp/mcp_proxy/security.py +399 -0
- autogen/mcp/mcp_proxy/security_schema_visitor.py +37 -0
- autogen/messages/__init__.py +7 -0
- autogen/messages/agent_messages.py +946 -0
- autogen/messages/base_message.py +108 -0
- autogen/messages/client_messages.py +172 -0
- autogen/messages/print_message.py +48 -0
- autogen/oai/__init__.py +61 -0
- autogen/oai/anthropic.py +1516 -0
- autogen/oai/bedrock.py +800 -0
- autogen/oai/cerebras.py +302 -0
- autogen/oai/client.py +1658 -0
- autogen/oai/client_utils.py +196 -0
- autogen/oai/cohere.py +494 -0
- autogen/oai/gemini.py +1045 -0
- autogen/oai/gemini_types.py +156 -0
- autogen/oai/groq.py +319 -0
- autogen/oai/mistral.py +311 -0
- autogen/oai/oai_models/__init__.py +23 -0
- autogen/oai/oai_models/_models.py +16 -0
- autogen/oai/oai_models/chat_completion.py +86 -0
- autogen/oai/oai_models/chat_completion_audio.py +32 -0
- autogen/oai/oai_models/chat_completion_message.py +97 -0
- autogen/oai/oai_models/chat_completion_message_tool_call.py +60 -0
- autogen/oai/oai_models/chat_completion_token_logprob.py +62 -0
- autogen/oai/oai_models/completion_usage.py +59 -0
- autogen/oai/ollama.py +657 -0
- autogen/oai/openai_responses.py +451 -0
- autogen/oai/openai_utils.py +897 -0
- autogen/oai/together.py +387 -0
- autogen/remote/__init__.py +18 -0
- autogen/remote/agent.py +199 -0
- autogen/remote/agent_service.py +197 -0
- autogen/remote/errors.py +17 -0
- autogen/remote/httpx_client_factory.py +131 -0
- autogen/remote/protocol.py +37 -0
- autogen/remote/retry.py +102 -0
- autogen/remote/runtime.py +96 -0
- autogen/retrieve_utils.py +490 -0
- autogen/runtime_logging.py +161 -0
- autogen/testing/__init__.py +12 -0
- autogen/testing/messages.py +45 -0
- autogen/testing/test_agent.py +111 -0
- autogen/token_count_utils.py +280 -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 +40 -0
- autogen/tools/dependency_injection.py +249 -0
- autogen/tools/experimental/__init__.py +54 -0
- autogen/tools/experimental/browser_use/__init__.py +7 -0
- autogen/tools/experimental/browser_use/browser_use.py +154 -0
- autogen/tools/experimental/code_execution/__init__.py +7 -0
- autogen/tools/experimental/code_execution/python_code_execution.py +86 -0
- autogen/tools/experimental/crawl4ai/__init__.py +7 -0
- autogen/tools/experimental/crawl4ai/crawl4ai.py +150 -0
- autogen/tools/experimental/deep_research/__init__.py +7 -0
- autogen/tools/experimental/deep_research/deep_research.py +329 -0
- autogen/tools/experimental/duckduckgo/__init__.py +7 -0
- autogen/tools/experimental/duckduckgo/duckduckgo_search.py +103 -0
- autogen/tools/experimental/firecrawl/__init__.py +7 -0
- autogen/tools/experimental/firecrawl/firecrawl_tool.py +836 -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 +284 -0
- autogen/tools/experimental/messageplatform/slack/__init__.py +7 -0
- autogen/tools/experimental/messageplatform/slack/slack.py +385 -0
- autogen/tools/experimental/messageplatform/telegram/__init__.py +7 -0
- autogen/tools/experimental/messageplatform/telegram/telegram.py +271 -0
- autogen/tools/experimental/perplexity/__init__.py +7 -0
- autogen/tools/experimental/perplexity/perplexity_search.py +249 -0
- autogen/tools/experimental/reliable/__init__.py +10 -0
- autogen/tools/experimental/reliable/reliable.py +1311 -0
- autogen/tools/experimental/searxng/__init__.py +7 -0
- autogen/tools/experimental/searxng/searxng_search.py +142 -0
- autogen/tools/experimental/tavily/__init__.py +7 -0
- autogen/tools/experimental/tavily/tavily_search.py +176 -0
- autogen/tools/experimental/web_search_preview/__init__.py +7 -0
- autogen/tools/experimental/web_search_preview/web_search_preview.py +120 -0
- autogen/tools/experimental/wikipedia/__init__.py +7 -0
- autogen/tools/experimental/wikipedia/wikipedia.py +284 -0
- autogen/tools/function_utils.py +412 -0
- autogen/tools/tool.py +188 -0
- autogen/tools/toolkit.py +86 -0
- autogen/types.py +29 -0
- autogen/version.py +7 -0
- templates/client_template/main.jinja2 +72 -0
- templates/config_template/config.jinja2 +7 -0
- templates/main.jinja2 +61 -0
|
@@ -0,0 +1,423 @@
|
|
|
1
|
+
autogen/__init__.py,sha256=pjy2Pv0o9AX0MqImMEUh7OnXQaw7gEZIbqTpmBV4eLc,2104
|
|
2
|
+
autogen/browser_utils.py,sha256=g4RdGc8xDX4SRC3YJik2Q6r_Mgv8VinK1G2xcC-MRS4,13189
|
|
3
|
+
autogen/code_utils.py,sha256=jPfacDCrvnDWoOtsqDMB1fj-arEkaCpW518_kpyrO5w,24040
|
|
4
|
+
autogen/doc_utils.py,sha256=EYKBbOCNQqbfD9pe13ywFfnO6vpRey3xNuczc6FGQvw,1060
|
|
5
|
+
autogen/exception_utils.py,sha256=YpuaczyoZ4wHFhyv1a_UA9CpUN2KKIU4johIRm_mOaQ,2486
|
|
6
|
+
autogen/formatting_utils.py,sha256=5jjz2kk65Cvu8bpglxzrfigdPeIJA4Wug7ccXqIyKo8,2097
|
|
7
|
+
autogen/function_utils.py,sha256=YnzwNFA49Jbbe4riAY1sinYcKphg5lrHFCXx0POdYbw,481
|
|
8
|
+
autogen/graph_utils.py,sha256=cjpuMeD4Qr_M-T1oRW6j0mSU8t-k9CCQ1pW0PhGW9qc,7820
|
|
9
|
+
autogen/import_utils.py,sha256=owv_EvofPN0ZNwgylTBx3lYS0XcSlRmxt3EqA6b1Xt0,18139
|
|
10
|
+
autogen/json_utils.py,sha256=-TUBPrioWUp_rH0LZ7uLKR7tSk-13IWnVvMw2fp-SwQ,1373
|
|
11
|
+
autogen/math_utils.py,sha256=Bj6VG1H0W0CwRJnbqL8dH_NBuW_FKHYde6M1H0oVEGA,9500
|
|
12
|
+
autogen/retrieve_utils.py,sha256=omqOebRN95IJUrvukJR9e7wno4vB1m3sf_gHv4ormN0,20070
|
|
13
|
+
autogen/runtime_logging.py,sha256=PV4xLXLEscBWVcdGLecN1f8gZqpvqK0E2SH0Y5numUM,4701
|
|
14
|
+
autogen/token_count_utils.py,sha256=cnUJfu0s5OW_71Z2de3KXz8hyoxRhEKRvbLs-Y6mfYw,11288
|
|
15
|
+
autogen/types.py,sha256=-C23PYj5EdwPZxcL3r0wFLAsQTXyVReghsdKV5b9jO4,982
|
|
16
|
+
autogen/version.py,sha256=ukO6oZUiXvbAAls2eI-UGKVP9hmitP-jqaXzRJE2H8c,194
|
|
17
|
+
autogen/_website/__init__.py,sha256=c8B9TpO07x9neD0zsJWj6AaEdlcP-WvxrvVOGWLtamk,143
|
|
18
|
+
autogen/_website/generate_api_references.py,sha256=cMzgnapuahybxmGHbddukJA3oZxj1uIktDdOyP4rGzU,14772
|
|
19
|
+
autogen/_website/generate_mkdocs.py,sha256=gr-Cuo1m6AzvXdqr-oQjsJA9C3AXY3FAFNld0fssJvk,45072
|
|
20
|
+
autogen/_website/notebook_processor.py,sha256=VK4bUWz0RvkbpxPN91Nit2h2h7SOamNqyjuKjif7P4M,16500
|
|
21
|
+
autogen/_website/process_notebooks.py,sha256=3MW1oWdBh1id5OpFI_4SoJ2EEfmrNDD0xMkTC2Tcp8Y,25902
|
|
22
|
+
autogen/_website/utils.py,sha256=5345c12pOXyEcLS1pciVJY4g7wDs_fGTAZ4HsDswGow,14704
|
|
23
|
+
autogen/a2a/__init__.py,sha256=F_1b_seEOxZ1XI5TS4-dDp8KpBWaCJMfAyuYt6hO9Ac,1031
|
|
24
|
+
autogen/a2a/agent_executor.py,sha256=Gm-bIWMgT4Saiw2dUBXTqF5XRcvQpb1wj5LgbBfONts,3079
|
|
25
|
+
autogen/a2a/client.py,sha256=8HXn6Dub-5O1kbbFPoM63FSq0z4R77FjMEWKfvIt5xo,14312
|
|
26
|
+
autogen/a2a/errors.py,sha256=ydsDYnjjZLSGqVIlNITEFLPoWV-Ctffl1w7e3-r0WQc,446
|
|
27
|
+
autogen/a2a/httpx_client_factory.py,sha256=XuK_rNEw47uqATsK9T7prgtLFbThL-nBbGzyPax3PkM,3213
|
|
28
|
+
autogen/a2a/server.py,sha256=Bd2z4nKOv5qMfbgaYcVCSojl--esA7l9_kuV922YCeU,8137
|
|
29
|
+
autogen/a2a/utils.py,sha256=ndv98jghJ1dQ5n4aI6f7GkcmogxlRx-0PxpyV3AlGWM,6164
|
|
30
|
+
autogen/agentchat/__init__.py,sha256=LkVdKOYXz6LX-tzEpeCZHOSPlWtCkMT07XX8lKjf8OE,1439
|
|
31
|
+
autogen/agentchat/agent.py,sha256=M9XNAX6u20tL_oLrEWMxFXFaqWpaJVWHjpzWTfy7xpY,5723
|
|
32
|
+
autogen/agentchat/assistant_agent.py,sha256=dP8gcG96BihPW34pvTlxMogRa0zONnQHwzxhQuQ2Jdg,5779
|
|
33
|
+
autogen/agentchat/chat.py,sha256=cdSb-SLJ0Mh_8QSx6zs9pM0jyND57p5DKjkynCpXxnE,14562
|
|
34
|
+
autogen/agentchat/conversable_agent.py,sha256=JeaOELDy_3dM19y-t4oqPo6ZWu4T2b60lO1ZO4A7g0A,201271
|
|
35
|
+
autogen/agentchat/groupchat.py,sha256=EmHqf5IDhi4vk0aCpg7Vd1m1BFAmvsbNdi5Jeyj3wgQ,91972
|
|
36
|
+
autogen/agentchat/user_proxy_agent.py,sha256=cFxJiRryh-648X07tJrItibdbHwBuFEQ2Yox1hLgDt4,7585
|
|
37
|
+
autogen/agentchat/utils.py,sha256=eWLFoB2qQBUW44PQiWJ5SRxT1w1UXxwL28JsjOwGqg0,8206
|
|
38
|
+
autogen/agentchat/contrib/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
39
|
+
autogen/agentchat/contrib/agent_optimizer.py,sha256=TXNHD9-myPKXwurd_pjQ_rpRj0ohsRKoG676a6E5BoU,22402
|
|
40
|
+
autogen/agentchat/contrib/gpt_assistant_agent.py,sha256=mms6DK0s91Y-iF_-GKY_WfWzLzz5hY2Q0TJOCYezNU0,24999
|
|
41
|
+
autogen/agentchat/contrib/img_utils.py,sha256=NQ0yAbY5zugnl00ZVqBgNKyBYwiguEOFxtVTlSMQIfM,15115
|
|
42
|
+
autogen/agentchat/contrib/llamaindex_conversable_agent.py,sha256=DD-JbrRnrsPKpLJPxtel7tS904giS1LTQmuFraDsCig,4533
|
|
43
|
+
autogen/agentchat/contrib/llava_agent.py,sha256=9yTg1fUDu5lqi-58Im50buNmeXLQybPsfh5wZQeUf6M,6628
|
|
44
|
+
autogen/agentchat/contrib/math_user_proxy_agent.py,sha256=Icw5nLbZwmzXsoGmFSE8KhTCknWOtJSkAdh78M9Wj8E,19678
|
|
45
|
+
autogen/agentchat/contrib/multimodal_conversable_agent.py,sha256=zgFHgiaBitUJuJ3V6zGja42fyN4-otVceIK_Sx-1Ddg,5112
|
|
46
|
+
autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py,sha256=WhKltVJkK_X7Y_eHTgXq4m9IthktVa3zgOt0vPOqV2U,19398
|
|
47
|
+
autogen/agentchat/contrib/retrieve_assistant_agent.py,sha256=4pO8A7koA5smHmnSxt21RyQ7DM3IKnl9LktyQlBbEi8,2539
|
|
48
|
+
autogen/agentchat/contrib/retrieve_user_proxy_agent.py,sha256=JbihbazTRJVspI8SmXA1HaBKMh6t7RdcI6zNGQ2oWag,37348
|
|
49
|
+
autogen/agentchat/contrib/society_of_mind_agent.py,sha256=S8FYf6DoYf1vbUcSLE_r3En6CeNKp6HPngT7H5e_iMc,9092
|
|
50
|
+
autogen/agentchat/contrib/swarm_agent.py,sha256=ZLJ8DmQBSYVIPIrn4dHBc9PXp98jerC0__RMvQxYZq0,66020
|
|
51
|
+
autogen/agentchat/contrib/text_analyzer_agent.py,sha256=B82Y5rU4EbDh1R_NiHVle5RVzmcLUkb68YOHc7AF7f4,3693
|
|
52
|
+
autogen/agentchat/contrib/web_surfer.py,sha256=_qfEahncl6rnqkalzYjL0pl9NE4i9xRY9SUePRJAX70,14508
|
|
53
|
+
autogen/agentchat/contrib/agent_eval/README.md,sha256=3uDjyARQVX3QJXDm05L33x8lp0zYbk2yJj4foBSq3qc,587
|
|
54
|
+
autogen/agentchat/contrib/agent_eval/agent_eval.py,sha256=Dg8DSCwwHqjZdZVIy6LABFP2nRpp_gDkiyhQgc2v4LU,3982
|
|
55
|
+
autogen/agentchat/contrib/agent_eval/criterion.py,sha256=wPfD-Iyc8h-jvWozpyycRykxxCBdRqBqT33peiSxSD0,1335
|
|
56
|
+
autogen/agentchat/contrib/agent_eval/critic_agent.py,sha256=JEOp6rZmO6GjKhJtty1K7rZ8YWgAlhJ26bFvUvZcHqA,2074
|
|
57
|
+
autogen/agentchat/contrib/agent_eval/quantifier_agent.py,sha256=Z4YZCoLnqpwcUAsVgLk2JbmWwC2ujBmj8nYynRlH6Mw,2012
|
|
58
|
+
autogen/agentchat/contrib/agent_eval/subcritic_agent.py,sha256=OK4J6L5opdlr5NzswBogateXWJK4hS5AAApydm1LEq8,2631
|
|
59
|
+
autogen/agentchat/contrib/agent_eval/task.py,sha256=s890Gbz6boscDyTuwuTmqa-GhdqE0qXIRr-pZYG1H2I,1419
|
|
60
|
+
autogen/agentchat/contrib/capabilities/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
61
|
+
autogen/agentchat/contrib/capabilities/agent_capability.py,sha256=lRHkFzk--FJIyl9mTXc1GDXjCfewUbhHFPih0DrvKXw,786
|
|
62
|
+
autogen/agentchat/contrib/capabilities/generate_images.py,sha256=t8eqets2oj8qbg33WXUD2EP0JEnFZkXCRluvm5PBxB0,12835
|
|
63
|
+
autogen/agentchat/contrib/capabilities/teachability.py,sha256=TvissjsVLqp8AoG2ll32iOMcAeON9B2ureujxv-e-L8,19333
|
|
64
|
+
autogen/agentchat/contrib/capabilities/text_compressors.py,sha256=DEJ6mV6ZPw8O_SH26ZYGhJbfU4C0BoUwwLQMW8cdvpI,2990
|
|
65
|
+
autogen/agentchat/contrib/capabilities/tools_capability.py,sha256=zZ-VYhP0EvX4i9uTjp9fOGsS5vq0YHurBa8HsviTfXo,760
|
|
66
|
+
autogen/agentchat/contrib/capabilities/transform_messages.py,sha256=bFUxDkq0jWLcgccE3Zp4_JD12zIVRE7AMVFwSJqssSY,3783
|
|
67
|
+
autogen/agentchat/contrib/capabilities/transforms.py,sha256=01emc4NloOkXvUvx027BGMDMAnx1WBg2cobt7Ae9Qic,26207
|
|
68
|
+
autogen/agentchat/contrib/capabilities/transforms_util.py,sha256=apxuCKiqDDqaSnBOov3dYXQONkia1CqIbNz_C2nFEf4,4534
|
|
69
|
+
autogen/agentchat/contrib/capabilities/vision_capability.py,sha256=4xtXY3V2Tc6A9EbpeHSUDvHY5WGJlRPLf5UltfjzhcE,9873
|
|
70
|
+
autogen/agentchat/contrib/captainagent/__init__.py,sha256=12X-ClPVPXBnN59wduSLhQ-PmUWXO45vvafHPQOUVV8,414
|
|
71
|
+
autogen/agentchat/contrib/captainagent/agent_builder.py,sha256=klhWt76CANrspEhS1wm2K9Jal4xjGydHCj3ZRr4W6ak,34105
|
|
72
|
+
autogen/agentchat/contrib/captainagent/captainagent.py,sha256=KDDaSuucNBsY3vI4DDKJI2Zxjw1rw8CKO3RixCChIos,27339
|
|
73
|
+
autogen/agentchat/contrib/captainagent/tool_retriever.py,sha256=5BSqP6RklVgSPQ57N3nZBsqjuo_WXfGUVERkuMA4SEY,12754
|
|
74
|
+
autogen/agentchat/contrib/captainagent/tools/README.md,sha256=454O-irP4gjSdYnFgoE0i3BfueXO0qFONxe3GMxMpHg,1677
|
|
75
|
+
autogen/agentchat/contrib/captainagent/tools/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
76
|
+
autogen/agentchat/contrib/captainagent/tools/requirements.txt,sha256=z2uZXzuO-MT_d0EPrk9G3Ct2cQeS-KTj0p7HdgqiEYg,110
|
|
77
|
+
autogen/agentchat/contrib/captainagent/tools/tool_description.tsv,sha256=FoTCONw59WUTNswa23ze6a2MOyvCuhZ8TZddPdU1ACE,3857
|
|
78
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_correlation.py,sha256=7w4d_ica3WBK6xwdblTU9S-tfzhHyrOHYWvU4Bs-08c,1712
|
|
79
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_skewness_and_kurtosis.py,sha256=XHBUs7g3MSJNVNe1dLUl3fu93OsVSDeDL_N-NZRmk4o,955
|
|
80
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_iqr.py,sha256=sh9X19sBWo7MPheBBW0oxWjVThjqTA9sg0d0Qe9L5xw,987
|
|
81
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_zscore.py,sha256=lUZrd55FpkIP5mbAa4ZTMLuGdMlfX4LHF_Y6HCFEGXo,1156
|
|
82
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/explore_csv.py,sha256=E-uSeRbIWdkqePa9mdPJrlXRk1xreQS8QzeA80WgFmE,717
|
|
83
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/shapiro_wilk_test.py,sha256=q-jzsu43UnlPFwhqnYYDE0SHLCXv6Z7o3V83eNASM0k,904
|
|
84
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_download.py,sha256=e8dcovrQBmKuvrlR6iNgSY7W_kU3NyqMHhjYUw0ucwY,966
|
|
85
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_search.py,sha256=gXVR-uXxML9Eoce5O96BuASvHeMwMILSdnoMFw15tqo,2062
|
|
86
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_image.py,sha256=WoOehyC_-qZEI2Tfvspel0fxdtGYdjlBUgKcMCtFi6M,1841
|
|
87
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_text.py,sha256=Jnq8BKHHUBzMac7joZtHzY3VxJGO48aKi6XIJu2UyQ0,1107
|
|
88
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_wikipedia_text.py,sha256=N89cJkKsWWOVZ81LFGCML_lckqd6cRtqMXb2xIw_Lms,680
|
|
89
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_youtube_caption.py,sha256=97vxZvTUtQvo7JbHVah8tFvLoIPPdc6Y_1WnSjP-yMY,1105
|
|
90
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/image_qa.py,sha256=clFskT2gTGK9cIMvn7zVC-a6xEavAM3ScVyQLc-TPZY,2203
|
|
91
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/optical_character_recognition.py,sha256=xtSkJ8vXrkpKqCjhgmkChpXcXZHDnS4BgUPXoLaTcck,1936
|
|
92
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/perform_web_search.py,sha256=Gu-s9NobPkdaQCtncpeRHfMR5X7T76srhnpTCQFft9A,1545
|
|
93
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/scrape_wikipedia_tables.py,sha256=xqhIwo6xeUGvnA1e2GFmYJ-2dxFoNqCjZW6ettRgITI,1346
|
|
94
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/transcribe_audio_file.py,sha256=N9D6dy3709oppcZszBHkwO0f7oHe9DzCrahE-ofZY_g,615
|
|
95
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/youtube_download.py,sha256=JH-jKe0gKFqLGOgWg6ppjD0kUcp3rV-1Y3g1Qu1Yf5s,1020
|
|
96
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_circle_area_from_diameter.py,sha256=cVuexCoTOzFS4icvZS4s7XFs9D5rYV1Am9eJGDj9Jsk,556
|
|
97
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_day_of_the_week.py,sha256=W8a0qb1v1BuDmvXkehbH8wY6Dw1qayQSMWGX81Vb6R0,803
|
|
98
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_fraction_sum.py,sha256=8rESE7EqQtWJHpghq1_pqRWjzKtYfj3Ki9XhaQqXpHY,1265
|
|
99
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_matrix_power.py,sha256=iG7tJH_cTB2Jw9BV9onsJGmLZnhCrbZrU8QG3ANIEZM,946
|
|
100
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_reflected_point.py,sha256=Iv4ccq1RgXXWdxicoNN_ee3vEfmVeesLDcCbrZ2SlIU,709
|
|
101
|
+
autogen/agentchat/contrib/captainagent/tools/math/complex_numbers_product.py,sha256=Ah8cyJNU9vH6W2OvCgqXUE75dGY5Bu9TCZn3uBHmvLQ,816
|
|
102
|
+
autogen/agentchat/contrib/captainagent/tools/math/compute_currency_conversion.py,sha256=lC0unY_a1KIt1P42YJbXqWAsFQn-sCKxmkYXnPw2BW0,851
|
|
103
|
+
autogen/agentchat/contrib/captainagent/tools/math/count_distinct_permutations.py,sha256=-vmRV2irJ3B-qvSxP3TrbWWnRP44D_r5rRzO1s9_v44,873
|
|
104
|
+
autogen/agentchat/contrib/captainagent/tools/math/evaluate_expression.py,sha256=-aGQ5PhCKosldV0ocKlULnxW4ar6YZI-F4GsCDdLi3U,1051
|
|
105
|
+
autogen/agentchat/contrib/captainagent/tools/math/find_continuity_point.py,sha256=HoXMaaSu7D-rLP-wwE2Ci4ZYcyqFKYEJc4e5zSEmgXU,1277
|
|
106
|
+
autogen/agentchat/contrib/captainagent/tools/math/fraction_to_mixed_numbers.py,sha256=iTE65cODujSAQrj1W1fxz2N1zOfxsf5P0Rb38YE312Q,1659
|
|
107
|
+
autogen/agentchat/contrib/captainagent/tools/math/modular_inverse_sum.py,sha256=XEmQFbEkqljKGD5KGpoHTazJr3poFz6-ZFfBtYqzg3Y,769
|
|
108
|
+
autogen/agentchat/contrib/captainagent/tools/math/simplify_mixed_numbers.py,sha256=iqgpFJdyBHPPNCqkehSIbeuV8Rabr2eDMilT23Wx7PI,1687
|
|
109
|
+
autogen/agentchat/contrib/captainagent/tools/math/sum_of_digit_factorials.py,sha256=-6T5r6Er4mONPldRxv3F9tLoE7Og3qmeSeTC7Du_tTg,596
|
|
110
|
+
autogen/agentchat/contrib/captainagent/tools/math/sum_of_primes_below.py,sha256=Xig7K3A3DRnbv-UXfyo5bybGZUQYAQsltthfTYW5eV8,509
|
|
111
|
+
autogen/agentchat/contrib/graph_rag/__init__.py,sha256=hSAlgZLlKyTwTEIc4YNfay4uI909cNQluXO5DMHDVZE,421
|
|
112
|
+
autogen/agentchat/contrib/graph_rag/document.py,sha256=kuTnpId0wdY3tHHu6ajeUWYyr2mIiSQXVUqdkhCexNg,739
|
|
113
|
+
autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py,sha256=Kk5KQUGfh1sIpUtVH94xtinRLGMPuMoi9Slh0OiER80,7073
|
|
114
|
+
autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py,sha256=l-nY29i5ZdO87lCnfZ-3TSGKtjsX0_A1doQk35SVV7A,4533
|
|
115
|
+
autogen/agentchat/contrib/graph_rag/graph_query_engine.py,sha256=GLHUrxtsBJXtaSVMF31Wk1lBN8p6oVA7bpBTuBBnpTY,1860
|
|
116
|
+
autogen/agentchat/contrib/graph_rag/graph_rag_capability.py,sha256=FEtsP8GeOtxscEJWJQdRMOb1eoYHZ5ZwaNzqZGeUyeI,2367
|
|
117
|
+
autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py,sha256=Wy3dLUzUCECap-txeCMNf4gL-4Itjw9gckeh3NMHcCM,11103
|
|
118
|
+
autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py,sha256=hlhkGGXmPMQpnQwO7ZuAWkExz0jvHubu75SE4_FVuoo,3514
|
|
119
|
+
autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py,sha256=_X2mNzmJpFBTjyqy895KUENCaNGIJOs_9SyHAF24uAs,8657
|
|
120
|
+
autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py,sha256=ArZY-xb24R9qxUcbSf1dSCRG38gNicvfJMp85qL0oqk,4174
|
|
121
|
+
autogen/agentchat/contrib/rag/__init__.py,sha256=OfAsxrgpjj3eFaVXyo6oWyC05r9M0UCCkWjsERQbfRo,452
|
|
122
|
+
autogen/agentchat/contrib/rag/chromadb_query_engine.py,sha256=PGRQ2dKP6qWWmQbIVOWUoiiQTQhvCNWn35XLSdm-_SU,12486
|
|
123
|
+
autogen/agentchat/contrib/rag/llamaindex_query_engine.py,sha256=kybAfct_wPi2DZBm6iAAEbZKAKVojUFkDObhwQvXIPE,8578
|
|
124
|
+
autogen/agentchat/contrib/rag/mongodb_query_engine.py,sha256=bdrkmMQvXx21qUitt1vBoNCStM8zeebVD0vMIPH0_Rw,14929
|
|
125
|
+
autogen/agentchat/contrib/rag/query_engine.py,sha256=IlU2FJoxbcbHMx3yu3Go9vkKWrTQa1SBGBOg3oUDPNY,2527
|
|
126
|
+
autogen/agentchat/contrib/vectordb/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
127
|
+
autogen/agentchat/contrib/vectordb/base.py,sha256=khSYyuboUpU8njgL30wvBCQIBrYeWb0aFlbcZzQf0ds,9230
|
|
128
|
+
autogen/agentchat/contrib/vectordb/chromadb.py,sha256=dQ-ZhGehFph3ZD4p35XndLtqeaOgUXpfEItjbIm6bgU,13607
|
|
129
|
+
autogen/agentchat/contrib/vectordb/couchbase.py,sha256=spTmImYEzcwiqRoyFBKiCx8sDl1eJUfPcuskt1J8lAI,16949
|
|
130
|
+
autogen/agentchat/contrib/vectordb/mongodb.py,sha256=CpedgBwxuDOpuNPnRqLTMr9_r2HyJH1r9njNTTujwRQ,23505
|
|
131
|
+
autogen/agentchat/contrib/vectordb/pgvectordb.py,sha256=LOsQ5-IPVvbUnbpabz-bgCqyRFD6oNgc91GHkV7u9qY,39165
|
|
132
|
+
autogen/agentchat/contrib/vectordb/qdrant.py,sha256=kJ7tfCZuBFVNTZa1QVQvwLDw01orp70Gulx2anG4ubM,13798
|
|
133
|
+
autogen/agentchat/contrib/vectordb/utils.py,sha256=oYdv8aopbG329mESAD2urt_eeTDHjyW5GroX0_d3chk,4490
|
|
134
|
+
autogen/agentchat/group/__init__.py,sha256=KgFEfYyX-YabmLo6kRdFV1YB16F3Z6iEZtwrIM3z-0k,2007
|
|
135
|
+
autogen/agentchat/group/available_condition.py,sha256=Sz4ZHGH0bFO8Z-SFbfe591LabvMHcxcqzA5pQaolyK4,3079
|
|
136
|
+
autogen/agentchat/group/context_condition.py,sha256=UwIOBqPzwi0emfkmseavTJJ6f0VA70dxuTld_FrewjY,2400
|
|
137
|
+
autogen/agentchat/group/context_expression.py,sha256=nzAVoI7RW0O1iuMyWpFZrVjGnHaQUsq8e83vXzzo06k,10012
|
|
138
|
+
autogen/agentchat/group/context_str.py,sha256=Jv8v8oNFymZGmahWpARdBrXBkmZUZWBDsfMyKwzTtHw,1238
|
|
139
|
+
autogen/agentchat/group/context_variables.py,sha256=1GkOokaaYX-Xc5b9ZylytjQxjhLAyY8MW3quPBJuoFM,5562
|
|
140
|
+
autogen/agentchat/group/group_tool_executor.py,sha256=MOputLb-mtEDZk_eu0z-dIbrFilR41rhOWaypSRstUE,14622
|
|
141
|
+
autogen/agentchat/group/group_utils.py,sha256=56yTmnA9aRsKklAzSdXBzO4RL3PurKYFOpaPvGZZI48,28096
|
|
142
|
+
autogen/agentchat/group/guardrails.py,sha256=F3aVn7ht-WCgz0uLC9f4Os8_yIEG0lgQ2XFrCi1GMKY,6324
|
|
143
|
+
autogen/agentchat/group/handoffs.py,sha256=IOUCOtCFAfhITZhh01HK3ehRMdoBgmgU4gwlLn48ofQ,11633
|
|
144
|
+
autogen/agentchat/group/llm_condition.py,sha256=wfuEET1VhyVVGedYxcyuhX_Vus6uZHxUl_SPpu4YIsc,2951
|
|
145
|
+
autogen/agentchat/group/multi_agent_chat.py,sha256=EdwDmLjRMsDrmHijDLVK5BK3Tg2t_FrZUsyjcvlF_Po,10289
|
|
146
|
+
autogen/agentchat/group/on_condition.py,sha256=o7wVXlUQ2G5Z3Mbm_awWQlYnnG6x9_HcqSiY7Arw0NQ,2195
|
|
147
|
+
autogen/agentchat/group/on_context_condition.py,sha256=Lh6m7kFt3dos1JLja3WPmH_9qTYhIkpM6hIL6T6YgU0,2032
|
|
148
|
+
autogen/agentchat/group/reply_result.py,sha256=DItDGQdaUucCuOIw8kGQDpwt9Li80xvt6Phmo2_14Xk,705
|
|
149
|
+
autogen/agentchat/group/speaker_selection_result.py,sha256=Mqn7LfiMqBBwhF0MxTqX9FdUdkflR7YHK_BV80Fmr28,1588
|
|
150
|
+
autogen/agentchat/group/events/transition_events.py,sha256=Os4DDzjilLahbzVgzph40T5ogr6J--q-QRrWjlYdph4,3651
|
|
151
|
+
autogen/agentchat/group/patterns/__init__.py,sha256=SUw-biSWow_uGHuHcMA3Pu2cq_CTTVeIqY2J8A5fq8A,446
|
|
152
|
+
autogen/agentchat/group/patterns/auto.py,sha256=zYvrTM6n2BfK-Gek4ViJwWFjz4zG0g_p3FmUXowfX3w,6064
|
|
153
|
+
autogen/agentchat/group/patterns/manual.py,sha256=F9VxDtazLslf6zKLahaqL5pa55inyTdUQlyGag8STTM,6316
|
|
154
|
+
autogen/agentchat/group/patterns/pattern.py,sha256=RMEPnMavpl7NP84hoaIZAwyQtxjHy1jmU4M_-Ea45CQ,10836
|
|
155
|
+
autogen/agentchat/group/patterns/random.py,sha256=Zte7JVN9illCqNRi3MkOGqSvKtJXmPaefB5bbTgyScI,3347
|
|
156
|
+
autogen/agentchat/group/patterns/round_robin.py,sha256=fYzkSoP7pi14Njvf5ZcKYBTymRglMo2BrB96HWzrC_o,3875
|
|
157
|
+
autogen/agentchat/group/safeguards/__init__.py,sha256=FzXqb1WMhDdOlFDwL3RmkfIQ5kjjg885l2YSvwHXcws,668
|
|
158
|
+
autogen/agentchat/group/safeguards/api.py,sha256=zhbH3AqdK7nenvyWQpaVixBMjdlC9E6HdA8fmteBL9Q,9858
|
|
159
|
+
autogen/agentchat/group/safeguards/enforcer.py,sha256=UOSzH1T11VMM46ccq0-0wqRZvH7JfDXW49qAzhQMdhI,52661
|
|
160
|
+
autogen/agentchat/group/safeguards/events.py,sha256=BhO7oThdNC7SY5J9bwS_aJKPIrbNNMU34T46ErHLPEo,4427
|
|
161
|
+
autogen/agentchat/group/safeguards/validator.py,sha256=8B-i5VgKVfmCgmB0nhMLESM2DEC5hjOQUcjXlfTKyp4,22855
|
|
162
|
+
autogen/agentchat/group/targets/__init__.py,sha256=AJNSbl9iMe2hiDmZojTp8h889o5OYN3V7f2_2nr8px4,145
|
|
163
|
+
autogen/agentchat/group/targets/function_target.py,sha256=c-NdvBrtX1TxMaiJKElLlbZxGYmAEK-HOt_59jxANaM,9454
|
|
164
|
+
autogen/agentchat/group/targets/group_chat_target.py,sha256=PcHQepNhR-_QK4q_L0P8rXZOsiRCfIzs5wnkmLGtMMI,5347
|
|
165
|
+
autogen/agentchat/group/targets/group_manager_target.py,sha256=XpAxIOy6NlyZOWN5omImnuNCXbQAQ3k2e2vif8CI4qk,6251
|
|
166
|
+
autogen/agentchat/group/targets/transition_target.py,sha256=XnKWiyZn3jMpAFiKH2XL8gxihS-YHYrRMvyOnOwwm8I,16751
|
|
167
|
+
autogen/agentchat/group/targets/transition_utils.py,sha256=fzRnaJtUEnNswkmamQH08X43xX2kV0SWGIWEV72TtIo,219
|
|
168
|
+
autogen/agentchat/realtime/__init__.py,sha256=c8B9TpO07x9neD0zsJWj6AaEdlcP-WvxrvVOGWLtamk,143
|
|
169
|
+
autogen/agentchat/realtime/experimental/__init__.py,sha256=leYemaQJXulYnp5atRJZE247EL5VJtdDoF_p1XJFQzM,619
|
|
170
|
+
autogen/agentchat/realtime/experimental/audio_observer.py,sha256=ayx96nB1iuUVu3E-AIBunPu7iUf3r-0GCrwKAnRtRw4,1312
|
|
171
|
+
autogen/agentchat/realtime/experimental/function_observer.py,sha256=WOA27ZfhvWMNmot-q-pKcHch1V6_KsPUB7pmGzveOlQ,3125
|
|
172
|
+
autogen/agentchat/realtime/experimental/realtime_agent.py,sha256=HzNuAfIL5KxnqDa1ML2sLvHp_bS6UfzgRSgWxMEYzXg,5671
|
|
173
|
+
autogen/agentchat/realtime/experimental/realtime_events.py,sha256=zmRr3pwPJpme5VZEADIz5vg9IZoT3Z1NAc3vt1RdWLk,1083
|
|
174
|
+
autogen/agentchat/realtime/experimental/realtime_observer.py,sha256=Y_UULA9CgxqKZo9dgBds0iipjx7cZ9MghrH4HcKd57o,3045
|
|
175
|
+
autogen/agentchat/realtime/experimental/realtime_swarm.py,sha256=AF4xn_bfTEWUO16a-TgXLtFP_y4wUDiJkkJAUiwewvo,19653
|
|
176
|
+
autogen/agentchat/realtime/experimental/websockets.py,sha256=bj9b5eq80L3KlGWPP6nn7uyfT_Z47kQqtIRbQkeE5SI,667
|
|
177
|
+
autogen/agentchat/realtime/experimental/audio_adapters/__init__.py,sha256=rd0pEy91LYq0JMvIk8Fv7ZKIQLK7oZbVdgVAwNZDCmQ,315
|
|
178
|
+
autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py,sha256=jBr5I3j6Z2jF6J-PNTvvAW24L0NvJpCul4M_fVP4S-g,6091
|
|
179
|
+
autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py,sha256=_TCzjhLJWLEDQ1jD2qHRyVB2T4lGfKEDtqxfvrIAYRs,5916
|
|
180
|
+
autogen/agentchat/realtime/experimental/clients/__init__.py,sha256=mLQaJUrmJ2PNlFPMf02F5HRsuEP-DV_-5vQPLaNgRnQ,443
|
|
181
|
+
autogen/agentchat/realtime/experimental/clients/realtime_client.py,sha256=_RRAYnaseYUzB5vmvG_TtdkAn6JIMrrz-u5g_gsWxZI,6099
|
|
182
|
+
autogen/agentchat/realtime/experimental/clients/gemini/__init__.py,sha256=OsuUiSPrD_-y67rL1wYsPHd0YUnvrGJ7TX_GUZZDB1A,221
|
|
183
|
+
autogen/agentchat/realtime/experimental/clients/gemini/client.py,sha256=UynugAQ-RD2eE15muVjxPRzD4Y7ROPCNj3e6VspKzTQ,10166
|
|
184
|
+
autogen/agentchat/realtime/experimental/clients/oai/__init__.py,sha256=NMVpiwIA3mcC2l69GSivt2MW4lFJeTaAGyEbhhNgpNs,307
|
|
185
|
+
autogen/agentchat/realtime/experimental/clients/oai/base_client.py,sha256=mzZoNDsWsYheiYMRowrV522wwEp79uFoaAEx_gCotbY,8424
|
|
186
|
+
autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py,sha256=Q6-slHtBzhIBb5ysQPrKy4yfoYdw4IpsRG51GztbNpM,9543
|
|
187
|
+
autogen/agentchat/realtime/experimental/clients/oai/utils.py,sha256=_6PsHZNBZXLM_GWadOwNvjjBsz4is0Np45AnySAkzy0,1604
|
|
188
|
+
autogen/agentchat/realtime_agent/__init__.py,sha256=Jr5mEWi_yCGfLxhxRi7RrcLzPIvTqDz3w5w7QWozCl4,479
|
|
189
|
+
autogen/agents/__init__.py,sha256=c8B9TpO07x9neD0zsJWj6AaEdlcP-WvxrvVOGWLtamk,143
|
|
190
|
+
autogen/agents/contrib/__init__.py,sha256=t0jzf-1c9vY5T5MHGgdHKECtacrmmzVFg1Oe-C_-QVI,250
|
|
191
|
+
autogen/agents/contrib/time/__init__.py,sha256=cvJIRqbF6x-ZszrPDOzUJI30BOcEWPrmOyBQvHvWrc0,279
|
|
192
|
+
autogen/agents/contrib/time/time_reply_agent.py,sha256=kxGoY04lFVnaRFVNV09ZMYfpe5ANdWyRlhX4Q5m5M38,3155
|
|
193
|
+
autogen/agents/contrib/time/time_tool_agent.py,sha256=fvWsiSKyz2vpcR1wtf1wo7DZps1CKt5ienNff7rksN8,2137
|
|
194
|
+
autogen/agents/experimental/__init__.py,sha256=SSqBqSHvUE52HXhtLThTWo4TPeQDHlw9bD--iampi4o,805
|
|
195
|
+
autogen/agents/experimental/deep_research/__init__.py,sha256=sEo1hXnAVyRQFzdfCfNPyQpwuMjxO06XgFXfRqymFhE,222
|
|
196
|
+
autogen/agents/experimental/deep_research/deep_research.py,sha256=h85ywezEGj53HotsGtaNxKaR3bC7DByx3oSKDPm_HV4,1738
|
|
197
|
+
autogen/agents/experimental/discord/__init__.py,sha256=u9uCviCbFRJ6xp87RI3WamDFNwUwGIHSnG9J39ioQ5c,206
|
|
198
|
+
autogen/agents/experimental/discord/discord.py,sha256=7mvk_z-zpng7iSZcScRjML_yNCxe0RzRdlqc_cGLRuw,2692
|
|
199
|
+
autogen/agents/experimental/document_agent/__init__.py,sha256=YNuO2YqxckrfAxcmRcI5JmiE7w52lkyVdLyvWxmbSUw,603
|
|
200
|
+
autogen/agents/experimental/document_agent/chroma_query_engine.py,sha256=Oho1DctvUdvObxLsCXsWK65jHygIZmDFETYisN1KgjY,13679
|
|
201
|
+
autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py,sha256=P2yJrS2uYWBYp2D_DryW9waBaCh2iasnWW4ZarQwuVA,4984
|
|
202
|
+
autogen/agents/experimental/document_agent/document_agent.py,sha256=UkG5hPzHQlsjLOc6lsE5p0rg1fFmeuVjTTgbKoAe5YQ,29284
|
|
203
|
+
autogen/agents/experimental/document_agent/document_conditions.py,sha256=5NOv_cAPWzL4PTu3IAGhGNg_EveEOhKH1uZ8M5mfsq8,2045
|
|
204
|
+
autogen/agents/experimental/document_agent/document_utils.py,sha256=5wR3B9NrFqwyLMhOm878SsXuLKMIMgcd5LlKyOCRPtE,14030
|
|
205
|
+
autogen/agents/experimental/document_agent/inmemory_query_engine.py,sha256=nzWFyHBd7buldVsOHYfo5WAMMEnmCnEoMnP3VkCFCVg,8858
|
|
206
|
+
autogen/agents/experimental/document_agent/parser_utils.py,sha256=BKcHJu1jvgq90CcIqQ_yTmWNpfBlp_QvDCKX9IaLOHA,5427
|
|
207
|
+
autogen/agents/experimental/document_agent/url_utils.py,sha256=imZriD7hXujPzlfQ2IbA0PQsBl-hj4QlQEFu-0yyY7M,15771
|
|
208
|
+
autogen/agents/experimental/reasoning/__init__.py,sha256=7sNWA9-cLr4F5NgS_0ykhAShA-YYwtbh0uJiPXPHJBM,242
|
|
209
|
+
autogen/agents/experimental/reasoning/reasoning_agent.py,sha256=GwETTEHSilVGIvpcBLWFIbstJnAgDMZPedhVbsWMMyA,50987
|
|
210
|
+
autogen/agents/experimental/slack/__init__.py,sha256=PHPU684QTDEgiZZYA6v7Immgr9gaN4rfNN4W12DZ1pY,200
|
|
211
|
+
autogen/agents/experimental/slack/slack.py,sha256=xjAoexK2BFGvDaoVgu0qO5csiGcPmYCRlt6cbjIzdyY,3090
|
|
212
|
+
autogen/agents/experimental/telegram/__init__.py,sha256=Y-HQJXmeux9QVY-Jjy22WO8cPWryxwaKEbhcypdUImY,209
|
|
213
|
+
autogen/agents/experimental/telegram/telegram.py,sha256=p53n_1T3DNiWTrigLEnAY5SJom5yzvysxR75qfgjCvI,3083
|
|
214
|
+
autogen/agents/experimental/websurfer/__init__.py,sha256=I3D0sIBDW9zxSOM0wNXdFfMZQIpiutet-9ikrm0WD0s,212
|
|
215
|
+
autogen/agents/experimental/websurfer/websurfer.py,sha256=3WWfk9P-u42kKVXV91FoDDd7aHnZsObRNU1Wtf2UMWI,2870
|
|
216
|
+
autogen/agents/experimental/wikipedia/__init__.py,sha256=ytX_85hqagdyl3I72kYQM2-3bR7rG_SI5cyx8pKSG2I,212
|
|
217
|
+
autogen/agents/experimental/wikipedia/wikipedia.py,sha256=emfDKajdCHMtZBZQN6FLd1MvbPahVW5i7KjnzCpsceE,3893
|
|
218
|
+
autogen/cache/__init__.py,sha256=HF7qJyJpzqTYXSwUyVUxAFTY0eakw5OFwhyg_KO3QwE,375
|
|
219
|
+
autogen/cache/abstract_cache_base.py,sha256=31ByPYG9WggK404dKUNO6mfoKFwlEN5ediWkzD9T5M0,2336
|
|
220
|
+
autogen/cache/cache.py,sha256=6t9XWfjB7liZ1FggKBJLWp3hqsV9X67w27_mpkTKgLY,7505
|
|
221
|
+
autogen/cache/cache_factory.py,sha256=ocfWn-jAyRIIliCHNjfNgec6sFd9VEc3MwcJm2LK-PA,3232
|
|
222
|
+
autogen/cache/cosmos_db_cache.py,sha256=C1CzTSwlmrYgmj_8_d92sbtgtg3Cwbrc3Bka819GwP0,5682
|
|
223
|
+
autogen/cache/disk_cache.py,sha256=9Qjdbi_7K5751jzeg0vTIg-73jq54iYqe9YLLr9tgN4,3211
|
|
224
|
+
autogen/cache/in_memory_cache.py,sha256=6940QfGh4E-dUhAa64I3r0dNwhiRjEPeHn9TLWSA-qM,1733
|
|
225
|
+
autogen/cache/redis_cache.py,sha256=HvaCGKrlTIdk335brNossVf_gAsx0ACt3nLZjEtrKk0,4129
|
|
226
|
+
autogen/coding/__init__.py,sha256=NRmV8_Ix48w-JPj2ZuAr__T7_wR_Xfmb6jS9FXBbysg,1083
|
|
227
|
+
autogen/coding/base.py,sha256=uRKFOpqDczb-LiMgMdF0i2O2JcqMqrFwMifD1OFI6FE,3798
|
|
228
|
+
autogen/coding/docker_commandline_code_executor.py,sha256=9KJKeYenDTk9JFh2MXQdV0pN-hn8rD_W_pnJlZ5tBWg,10737
|
|
229
|
+
autogen/coding/factory.py,sha256=UwhtKT-0NQWBNwenluVbSI_14hecUrR_3wlwy0eC4iU,2397
|
|
230
|
+
autogen/coding/func_with_reqs.py,sha256=bAy9jqm4XO7yOxLa_psMe7H35e9mllujiGkkB49AOoo,6371
|
|
231
|
+
autogen/coding/local_commandline_code_executor.py,sha256=VfzufxzkRslVDQ8FO5M1RaUEkdQdJOfUgXfmK5-SIYY,14221
|
|
232
|
+
autogen/coding/markdown_code_extractor.py,sha256=G3MAQ6RGRHgLL9EZtTCXQsbxWxGqa_ffyzJ6vNhA7Zc,1614
|
|
233
|
+
autogen/coding/utils.py,sha256=Rx-5b94WK25EVHhekWtx_QJpni-RUUL9xiXdPF096Jw,2067
|
|
234
|
+
autogen/coding/yepcode_code_executor.py,sha256=xU8QOIwHerTiBvwXpEFbeYzJpYEexO9TkdYCjii7qpE,7235
|
|
235
|
+
autogen/coding/jupyter/__init__.py,sha256=HsXcVgN_gS2CO0XzeKidjxpipCgV8Dt0zXpK7Q4lArs,830
|
|
236
|
+
autogen/coding/jupyter/base.py,sha256=yd-hc7tUsOSH9MZDLzQKYFIVRQegJIhvVt3_LH8B6uU,1133
|
|
237
|
+
autogen/coding/jupyter/docker_jupyter_server.py,sha256=GyBqQWojMva70cozx8_Mc0VnamZFgADmMRJJNOG8jJ8,5746
|
|
238
|
+
autogen/coding/jupyter/embedded_ipython_code_executor.py,sha256=qaMpoRzUTxMocL9riooItgosw80AMpyCzSzybyfTbBU,8116
|
|
239
|
+
autogen/coding/jupyter/import_utils.py,sha256=0iKtimTor8vtdRYItFBnK8La4xR8zw8voAsjB5I96_Y,2621
|
|
240
|
+
autogen/coding/jupyter/jupyter_client.py,sha256=9LeAa40pPuPrZ1MG3bnge9Vyt_flzojvPvO08XZNSZw,8559
|
|
241
|
+
autogen/coding/jupyter/jupyter_code_executor.py,sha256=GAqyjpeQaUyn99ZuO8Mez_XNHnae_4mds82hll7ftrQ,6236
|
|
242
|
+
autogen/coding/jupyter/local_jupyter_server.py,sha256=Ls7u3IloCvgTa-Ag-svSwAUo4fJ0-Hn_v9mt83y4rSw,6240
|
|
243
|
+
autogen/environments/__init__.py,sha256=SNh4NFcBgySNW--H1YUZPEf7F7QLpBQA3Qc8EvyM-gk,488
|
|
244
|
+
autogen/environments/docker_python_environment.py,sha256=5pw0NoDGMjaztnZDN26aliRGUdouGdMAX7R6F0WtU9E,14891
|
|
245
|
+
autogen/environments/python_environment.py,sha256=iHFErf9_AYaeb436azCXEZsM02q2fCvEfWtaN4AXJM0,4184
|
|
246
|
+
autogen/environments/system_python_environment.py,sha256=c710NhwMSgIdod954HRBmtGnJIjhJCJXH_U8uBpueUE,3110
|
|
247
|
+
autogen/environments/venv_python_environment.py,sha256=secI5sYOoSoTrcrGinmUlNaWr27J5yTexEJhWxqeif0,9958
|
|
248
|
+
autogen/environments/working_directory.py,sha256=3Z_gj-fPpn8qdAq1K8jF-Wydh56E3bjFQZGiugxJv5c,2496
|
|
249
|
+
autogen/events/__init__.py,sha256=XwCA6Rsq9AyjgeecGuiwHcAvDQMmKXgGomw5iLDIU5Q,358
|
|
250
|
+
autogen/events/agent_events.py,sha256=V7bJvPKdrw21-mPtDtqHmTyUEnsgSpKnhxImuVknteQ,30720
|
|
251
|
+
autogen/events/base_event.py,sha256=_vEyks9XuNZ0-HfdCiDlan_HhnOMDeqCNvy6TEfnucM,3498
|
|
252
|
+
autogen/events/client_events.py,sha256=JHhvUuxYQXv2HmgZpsgCLKAotCIDUVAdlZvDQfPI1Ww,5406
|
|
253
|
+
autogen/events/helpers.py,sha256=Wd6KGhCwR0A7VT98z1Jeu9STNPB5x4aqXJxfFeE0R9A,1537
|
|
254
|
+
autogen/events/print_event.py,sha256=8nDbCvVd4zFJBGHLIeyFHzV0uFmLTnLNIRJouduWxs0,1272
|
|
255
|
+
autogen/extensions/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
256
|
+
autogen/fast_depends/__init__.py,sha256=4KNQsBQmoDf5RIZsnOuMFy7t6-Y1hnKjIplGdbo_k8Y,465
|
|
257
|
+
autogen/fast_depends/_compat.py,sha256=HT9xOra8FkBHoH5VuSA7bFyFjVx2rT_U7cW7MTblbSw,2539
|
|
258
|
+
autogen/fast_depends/py.typed,sha256=T2j_zfU4zutMBbYt-DnEWSdP7XjLdaS9Tqt5z8VXUgg,288
|
|
259
|
+
autogen/fast_depends/schema.py,sha256=AWXjT2-7oguZPZpLIH_XtA7Ak7tafOyTexFzTCICfxE,1911
|
|
260
|
+
autogen/fast_depends/use.py,sha256=UFiB4Y9GH_NcbdWSuEtYKaAkWXFfp2rcJwIjO0AoT7g,7818
|
|
261
|
+
autogen/fast_depends/utils.py,sha256=y80g9OxnqbF9Yg9rjf5gfAs3XEwUDmYGErgxUGxmHAY,5499
|
|
262
|
+
autogen/fast_depends/core/__init__.py,sha256=qegYjQCufCOBWZT210C9xXtjmkdiWluVjSF3q26sdSg,410
|
|
263
|
+
autogen/fast_depends/core/build.py,sha256=GoAXYsRAYREBcVy1s6zCCOXuD9jWZ1ef4Mg2UNmeH1Y,7060
|
|
264
|
+
autogen/fast_depends/core/model.py,sha256=d3XfgOHi-xXXL5E8gHvnnkp0Il2pN8Fv5HF75cB8HIE,16098
|
|
265
|
+
autogen/fast_depends/dependencies/__init__.py,sha256=qoiZscVbv-YWci0ZHjhIA3mAnP5AKCwtnQU-r5AY3LY,441
|
|
266
|
+
autogen/fast_depends/dependencies/model.py,sha256=3NvedTqkXNYgD2LzgX19jJ6L6Odpptx8swmluzZevfQ,893
|
|
267
|
+
autogen/fast_depends/dependencies/provider.py,sha256=hygLtjtQaerrpcLRuPM9O3yB1l4jduzmaZfYQOVj_pk,1115
|
|
268
|
+
autogen/fast_depends/library/__init__.py,sha256=N4Qse-hGFWumWIowm4N0omd3Qqa15GmP5dzav9oKwNc,348
|
|
269
|
+
autogen/fast_depends/library/model.py,sha256=Ag9VLYLdZr2KLI33UUCh76n5iQJc-ARoAIMJmNNQoa8,1202
|
|
270
|
+
autogen/interop/__init__.py,sha256=c80dCkG4qyQFk-sE_gxVrxNNoVnbzxmglg7-t3Ut_fU,750
|
|
271
|
+
autogen/interop/interoperability.py,sha256=w7j3fKJZB9kQdIjIJnywe1pvtbdXNz1of9RY2Ny8ECQ,2578
|
|
272
|
+
autogen/interop/interoperable.py,sha256=8PxfGdTKhPyibIqZ8ekdp8YLOhSjW8_64l6JHuhLW-o,1473
|
|
273
|
+
autogen/interop/registry.py,sha256=k-BzCybDHZh1ywMS4OdfyWWMsBYaRzk1geZUYAmPm08,2149
|
|
274
|
+
autogen/interop/crewai/__init__.py,sha256=goeDZTI1PlxNwsLfZWvJMYSUjmsMaJwAPTI6gAHmuyk,225
|
|
275
|
+
autogen/interop/crewai/crewai.py,sha256=hhwg4Y9nhFsDrnbCWIOXSKj4eM_cmYSiDb5oGBEzvIw,3230
|
|
276
|
+
autogen/interop/langchain/__init__.py,sha256=8v-kdg4ImQ1Udzd8Y6r7DTvd760SgWkwNKz6NmII41U,336
|
|
277
|
+
autogen/interop/langchain/langchain_chat_model_factory.py,sha256=cPe1--5BPQVb6mQxfSKY3P1UIvfGGPsJjwWUP0JIYoA,5605
|
|
278
|
+
autogen/interop/langchain/langchain_tool.py,sha256=KOlCvor9tQfx6BILC9O1Qmo4SS4XEdl--4ygOF_K3Vk,2981
|
|
279
|
+
autogen/interop/litellm/__init__.py,sha256=0K9NkQEBXKZI6UVNwD4daTumQL-uhMrAJE33wiSYmkI,237
|
|
280
|
+
autogen/interop/litellm/litellm_config_factory.py,sha256=JuxNRMM4HwYebmOfs-jnH1Cf5uD3SM968pyVtW_49Cw,6272
|
|
281
|
+
autogen/interop/pydantic_ai/__init__.py,sha256=w9tqh96x43Ipq2loD_F-kqwws2RFRs7-98mPxWG-Mjc,238
|
|
282
|
+
autogen/interop/pydantic_ai/pydantic_ai.py,sha256=TOmvsAg1qliSzTG_yE1Hu64ZRHHa5x3xVHKkPpTWe8c,7024
|
|
283
|
+
autogen/io/__init__.py,sha256=c5iZkM24B9j3K0yPQ0HYJnvAdNMqhlRZVXqcfdnGFX4,600
|
|
284
|
+
autogen/io/base.py,sha256=yBFUwpZxOFa4F5_dv4ZWoN8iiEy3oH6xgWoo-TK-bg0,4705
|
|
285
|
+
autogen/io/console.py,sha256=6dYGWntAMgbVX2An14pcs5YyusFsUGeF_-tgR5IMOC0,1892
|
|
286
|
+
autogen/io/run_response.py,sha256=QCmUaGbQtagftvTDAdI-mMRndmjboyodrKyZEWAzDyo,9643
|
|
287
|
+
autogen/io/thread_io_stream.py,sha256=iSYyImEOtUHACpRIt561Xu6UL5isUkBL8YUG49QPlYQ,2307
|
|
288
|
+
autogen/io/websockets.py,sha256=aatW-lzL7uuoBS8CDbTJ_YZqPH-QhczjSG2dcJsShoQ,7466
|
|
289
|
+
autogen/io/processors/__init__.py,sha256=8-znkWyHiESpMktD4cU_id-HPLE7JD7gArj0y-7K7dM,443
|
|
290
|
+
autogen/io/processors/base.py,sha256=60oltHFRWIjZsxzzzK5evPx1M-H0lHZVNVkmItiTNSQ,685
|
|
291
|
+
autogen/io/processors/console_event_processor.py,sha256=sdrVG8LmW2ZUMKoa8bhCpPz1NImz4dFcMaXj1VFlkYg,2214
|
|
292
|
+
autogen/llm_clients/MIGRATION_TO_V2.md,sha256=ogfINK0pYBUPOnUtF9PQk8RrnIaejOQ1_S6dfxtf0Vo,25828
|
|
293
|
+
autogen/llm_clients/__init__.py,sha256=Ebr24Azp_dspXEdr4jjYyLsrbnXecdLWbX0yAh0zJmg,2104
|
|
294
|
+
autogen/llm_clients/client_v2.py,sha256=mtxWNuEX60Ke7VEq4er-ly8L8GuEdHnPixVveTC5pdo,4491
|
|
295
|
+
autogen/llm_clients/openai_completions_client.py,sha256=92ggD9VVofYAC5iYIJaj_qUQnwOoigtuXbG17QiiXN8,17883
|
|
296
|
+
autogen/llm_clients/models/__init__.py,sha256=1lZo2O2u7OhvCv9K_n7rGXQnP3fy1soexDTglJPl4C8,1324
|
|
297
|
+
autogen/llm_clients/models/content_blocks.py,sha256=khPz1nurWYF3sl2sV5y2tUeBLcFYyKOKyAczT2_A_hw,12853
|
|
298
|
+
autogen/llm_clients/models/unified_message.py,sha256=jqpcDdmGBs0c0q9EdlrpoC-EXr97UEDDdaztwu9pps4,4744
|
|
299
|
+
autogen/llm_clients/models/unified_response.py,sha256=ewW4dYTkHCeT47Zr6hQI3sIW7JH99d7wggNHZZmcZV0,3037
|
|
300
|
+
autogen/llm_config/__init__.py,sha256=P_jAlr_bz-xr8P0eLeUJ9aF7ruNW3bQ1b1d6lfaYP68,257
|
|
301
|
+
autogen/llm_config/client.py,sha256=AbNSOMNHpkt38zbfVyN6t6SUZRX-1HL1Bi3LkMrmGaA,2495
|
|
302
|
+
autogen/llm_config/config.py,sha256=A8N7Rf24cwXAWT-xr0K73IvrBCELyydkvX5gVKRKJAM,16725
|
|
303
|
+
autogen/llm_config/entry.py,sha256=9ftf_oAAdEtnlsiuT-W55eXEs3uXNxpZYUvgmUxYus4,6237
|
|
304
|
+
autogen/llm_config/types.py,sha256=IPtJ3Gol0Kiba5-1dc2Wj5MVMt__IeiOgw5kLgBjKH8,1231
|
|
305
|
+
autogen/llm_config/utils.py,sha256=rHikSxhuU9kfmKyjrD9bjo9GJ70RtaTGnE8s7PdO5x0,11002
|
|
306
|
+
autogen/logger/__init__.py,sha256=TTBS92VspksnTQzlMQcCBd-NzYc5UQ1DCrzO4aNvwO4,442
|
|
307
|
+
autogen/logger/base_logger.py,sha256=RWN-ilxJJrq-IxqKlyx2B6QnxgMhEoBPq-vonGMHDO8,5051
|
|
308
|
+
autogen/logger/file_logger.py,sha256=SPo0HIjrdi1gBOUxSWnx-iPLUvQndak-RUFEtT2Q9sU,9823
|
|
309
|
+
autogen/logger/logger_factory.py,sha256=jXtkqJZz-ioBovulCVlPmd3imIJID4p0Iy66wapeuYs,1378
|
|
310
|
+
autogen/logger/logger_utils.py,sha256=QpxOeUAqJpkrhnZQofpGRU7ZJLVRM2ZRJtrN_p42UMM,2046
|
|
311
|
+
autogen/logger/sqlite_logger.py,sha256=1gTPgTgwd8s9DGj_xwOG8HLhrp_AqJeq5LGwhdLKNKo,18721
|
|
312
|
+
autogen/mcp/__init__.py,sha256=6BDDmw0sjLZRjyHnd-Gfh9BE-pTKTv5bkow9W6odHtQ,213
|
|
313
|
+
autogen/mcp/__main__.py,sha256=p0c3oJp-cDDtOjbX4OzOCZe4uaH0algsaQ2h8dVYEVc,2462
|
|
314
|
+
autogen/mcp/helpers.py,sha256=0iqNUQbuzr0y1Y26z6f--6DAmVLrTCTHyCjVXu_eZS0,1519
|
|
315
|
+
autogen/mcp/mcp_client.py,sha256=DfENyLe71SoBj2HWBNlSswbLcDnH_4FwICnFOhINVRM,12966
|
|
316
|
+
autogen/mcp/mcp_proxy/__init__.py,sha256=3HTU-TqHLk4XSXeBV1UFd9XkQ1B0yOuXXyGseXvDVec,518
|
|
317
|
+
autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py,sha256=3gAzyMnXO_VpsQpbZC4di4dPJgaj57vfyXOgsNbAGVQ,2063
|
|
318
|
+
autogen/mcp/mcp_proxy/mcp_proxy.py,sha256=aTpxWANITY6ppRZYUDVMcbRnE99V-K8u6Z5NKI0XKr4,22025
|
|
319
|
+
autogen/mcp/mcp_proxy/operation_grouping.py,sha256=uqt25_oBqFPSB1ftuo5qXvrlTW6n0ZIFvW6W886B8QU,6264
|
|
320
|
+
autogen/mcp/mcp_proxy/operation_renaming.py,sha256=4tu-SRgPaUhUBRwp0hDIeQG6X0IKIvavsmuD0zwSJsc,3911
|
|
321
|
+
autogen/mcp/mcp_proxy/patch_fastapi_code_generator.py,sha256=vBr8P890nsFvK4iuFicrdNskooHlBQeTQ6jbb5kcPAk,3490
|
|
322
|
+
autogen/mcp/mcp_proxy/security.py,sha256=KHbauSc9roMUUWYi9SFCcMOv7ZVdXqTAJhjOr5Lcf5Y,13569
|
|
323
|
+
autogen/mcp/mcp_proxy/security_schema_visitor.py,sha256=UafLMd5zcz0COcc5Vfvt6bP3LQ3jmaBwQIlWhovN9H4,1345
|
|
324
|
+
autogen/messages/__init__.py,sha256=ZuLvvIQRkNE5fotPe6MSS_YzOUkmfIqGSfOZZOZQ3go,321
|
|
325
|
+
autogen/messages/agent_messages.py,sha256=63nbvEh1CtPGluT7vbhARTp3WOeqU7qnWJBwPByZL24,30091
|
|
326
|
+
autogen/messages/base_message.py,sha256=EkxwAL7A1IaPV_YghtWi7rKgtATE5Geh4SF4MTzw38k,3831
|
|
327
|
+
autogen/messages/client_messages.py,sha256=1OsKmdQSkt2gaAAz60Vf683oVJtLEkztLeowQeNBRx8,5593
|
|
328
|
+
autogen/messages/print_message.py,sha256=XoAAOh08MiFBX82OLylweJSlba6Rj1DYfdHRmEMVDbs,1390
|
|
329
|
+
autogen/oai/__init__.py,sha256=Oa_MwOABsjWOjJkiE_l9XMLDJxLvx7lo8_59QErjLbY,1799
|
|
330
|
+
autogen/oai/anthropic.py,sha256=kxFbO5HGFPBdweZByGHby7eI_ou_whhHqHH62IwA_ic,61328
|
|
331
|
+
autogen/oai/bedrock.py,sha256=1a3reJQnsa-r_-wnJSE68R8u_xenkVffSPPjn98NQD0,32898
|
|
332
|
+
autogen/oai/cerebras.py,sha256=UE4cLCCYKuOhuxSP2HmLX_CV0fCH4b1evTcycxKUBIw,12460
|
|
333
|
+
autogen/oai/client.py,sha256=OJbm0YNxWXg6upuv6kIpn4s28fJLaAbupHa6Rm8DPrs,75416
|
|
334
|
+
autogen/oai/client_utils.py,sha256=O7pBAerlBfePxdnfFW3xHnakrbcGNX0wGdNnMk4_xzU,8689
|
|
335
|
+
autogen/oai/cohere.py,sha256=6CJbEcX7gbwcxH3IY7QukKOdEDG_0MuOPbqz6KdE9O4,19689
|
|
336
|
+
autogen/oai/gemini.py,sha256=w_H8KWcdhNAlWIJ-BSSMyNAZXR-ch0MU2ff7oDivemY,43872
|
|
337
|
+
autogen/oai/gemini_types.py,sha256=GGt0o1ozWdLobiZMzdtxmpDKKDW-bwgxOQkw5XvJPKI,5861
|
|
338
|
+
autogen/oai/groq.py,sha256=3n_ttn1XT1JiwlzqDInok8ZpvXPVyojQteoBWvFPaxQ,12731
|
|
339
|
+
autogen/oai/mistral.py,sha256=lde8Y_1HZ6huKWUUxGV53JQKoO0mc9aI-p1EjdvuOHQ,12918
|
|
340
|
+
autogen/oai/ollama.py,sha256=w4n05PyttiImoDA2jVWHlUFNs-JYHUZWGCOTUQLV3Fs,29479
|
|
341
|
+
autogen/oai/openai_responses.py,sha256=gTA4uhIWuQGo_yBbmTy6wlyLXg3FVKg5QFVLHYI8sN0,19107
|
|
342
|
+
autogen/oai/openai_utils.py,sha256=dVGFgR4BrofSrC1k2iJJv5xW683FMPUHj6ERU3u96Wo,38566
|
|
343
|
+
autogen/oai/together.py,sha256=7P609kdAvoxR-p0avpJ3BJz2LqEgDEJBLLod_P8FXfM,15318
|
|
344
|
+
autogen/oai/oai_models/__init__.py,sha256=_ofxopODDnpu9DDqRpPnXNYcgY9mV4X3xwnBikd7HC0,753
|
|
345
|
+
autogen/oai/oai_models/_models.py,sha256=VzdI9A3QpV1iBt-Vjms5LHT9n4FXrHIAwcpCzluX6TI,436
|
|
346
|
+
autogen/oai/oai_models/chat_completion.py,sha256=zO601eGmU18dPQfWwCeZnQsZR5vfuVTqm0N9U1_Odvc,3151
|
|
347
|
+
autogen/oai/oai_models/chat_completion_audio.py,sha256=a55i5E1EnT8qWdiKxbwF2kmgt4fih6x6HaChjs0ZuZE,950
|
|
348
|
+
autogen/oai/oai_models/chat_completion_message.py,sha256=C8ROmDVwYIoFWnEo0uCLcI-yGB-FXTGqeeIgBOngN84,3218
|
|
349
|
+
autogen/oai/oai_models/chat_completion_message_tool_call.py,sha256=L0SzWLQq7MWW4hykArAuyZS_Tqz_AFuj18YKBQmYI_k,1771
|
|
350
|
+
autogen/oai/oai_models/chat_completion_token_logprob.py,sha256=gC5o8BgScmAn9mBkCdWPgs4G6Es7xWp3spJC5aOxGCs,2031
|
|
351
|
+
autogen/oai/oai_models/completion_usage.py,sha256=-37tfKln6QO-fwC4Smo_mxnjOiNrM_K1Ck26WHhvIP0,1968
|
|
352
|
+
autogen/remote/__init__.py,sha256=j39qEJIb3I4mCBYQ9ButvbSDcrh4-qJEuZWJkP8Z91c,511
|
|
353
|
+
autogen/remote/agent.py,sha256=Q2waHRtrEas-VsHmF-uYon2l5jlWf8-rYAX82FIB16c,7670
|
|
354
|
+
autogen/remote/agent_service.py,sha256=GaQBEni965gk1JKyCdMQnCltdEmh09TkApWURUnIOlc,8239
|
|
355
|
+
autogen/remote/errors.py,sha256=e6qr7k-3mI8afCgnBtplZYsb5al1q6rYytwjVUTttvk,491
|
|
356
|
+
autogen/remote/httpx_client_factory.py,sha256=RbO3-d15ygiC744O4GLl-qX2uICqvsSUXXWWi8mGCrY,4822
|
|
357
|
+
autogen/remote/protocol.py,sha256=XkuajoPor68_0v5D19J-5tRyzweUjLhxjzaXvHeKw3g,1104
|
|
358
|
+
autogen/remote/retry.py,sha256=8RLm8ABbDE8ZQXO6wRndQxRDeIuNUnCkTaVLL8ag10U,2859
|
|
359
|
+
autogen/remote/runtime.py,sha256=nW4N_7RO2CS8gzP9fqAXuWhiU4q-8XuZE9e6SBJ00yk,3194
|
|
360
|
+
autogen/testing/__init__.py,sha256=e9yi2_Eplb5x59o-f-YR9RUd2sHukgCFHIK04BM7YZo,293
|
|
361
|
+
autogen/testing/messages.py,sha256=v9TaGiWkZclntSGAzbVK1LEC5nMHJrkPJUtcnLGVlIc,1513
|
|
362
|
+
autogen/testing/test_agent.py,sha256=i433We7sGIoqvJDX8o8dZ8GyoUSp7UdJwRiL836td7w,3671
|
|
363
|
+
autogen/tools/__init__.py,sha256=guevGJut7uN2pGpPn9mODaVsTSfeHrGpjjjIEWRBqVo,554
|
|
364
|
+
autogen/tools/dependency_injection.py,sha256=APcLOiajJkpjoicu3wUovjbb0pmidj4M8UUkdq5LsEE,8217
|
|
365
|
+
autogen/tools/function_utils.py,sha256=n_C2H6Y0cG-oQw7YsTH6egQnFwRgEq0MLoe1Jt9vp4I,13762
|
|
366
|
+
autogen/tools/tool.py,sha256=5Z7N4DWF9A2J3yvnG8porlRc0AAdamPJnLr3E5M2BiQ,7245
|
|
367
|
+
autogen/tools/toolkit.py,sha256=1tOmTGJ96RhkJrrtAViKUyEcwacA6ztoIbYbnf8NgTU,2558
|
|
368
|
+
autogen/tools/contrib/__init__.py,sha256=DWEjPK6xCR2ihAXXdquQZmiuqRLA3Pqb8QV8W1RtS3k,202
|
|
369
|
+
autogen/tools/contrib/time/__init__.py,sha256=dplie5aBJZ8VoKy6EKcQMLTtSgcCkNDYzpdsC2I0YWk,195
|
|
370
|
+
autogen/tools/contrib/time/time.py,sha256=mqE6LFfwF9C_S474nG8INmz4mxnMg18DADpnykqQLrQ,1270
|
|
371
|
+
autogen/tools/experimental/__init__.py,sha256=OPJlrK_tJCPbeBT-qsIWwJBdLuaCMskpshduA8Haj7E,1671
|
|
372
|
+
autogen/tools/experimental/browser_use/__init__.py,sha256=kfxCajXcVMDH6CZq-lWh2p8PKxOwT9yjC_Za0jr4zUg,290
|
|
373
|
+
autogen/tools/experimental/browser_use/browser_use.py,sha256=ty6jIy8Yeb8lSakgRGBW4AZUPcBBcFeSxgz-n4ejNqs,5515
|
|
374
|
+
autogen/tools/experimental/code_execution/__init__.py,sha256=KFUku2awEgsnkSa48t2iMMPC-QCxpqAG7lb8fB4Fr-c,242
|
|
375
|
+
autogen/tools/experimental/code_execution/python_code_execution.py,sha256=zxeBZfU0SM7yQxdbqV63NdZPfoFev2avcxdE_XofeIg,3667
|
|
376
|
+
autogen/tools/experimental/crawl4ai/__init__.py,sha256=UjFJLSZ9P5xT6WCV0RDPtwt4MHuwPdK90TU7ByXhLWs,207
|
|
377
|
+
autogen/tools/experimental/crawl4ai/crawl4ai.py,sha256=i3ixm1I3GqDIMHN5fsO9g2TnZwXQJ-j0rD9MMKX5zss,6026
|
|
378
|
+
autogen/tools/experimental/deep_research/__init__.py,sha256=9SFcDEj2OHxNSlXP11lf1uHENlfUeO47ROcOSD9GCDs,220
|
|
379
|
+
autogen/tools/experimental/deep_research/deep_research.py,sha256=HfnNow6ZC2dIw5Lh0vdmSpyVFAJkJHD-c_Dau-cYt_I,14948
|
|
380
|
+
autogen/tools/experimental/duckduckgo/__init__.py,sha256=hstpKQfvd5YD7X0iMuvJFlui3MtJVGbz5XpkOSaoy18,232
|
|
381
|
+
autogen/tools/experimental/duckduckgo/duckduckgo_search.py,sha256=_rMd-v5OqGe9lIuJgs-y_Z9wRgoDtZnPrD0W82mz27U,3486
|
|
382
|
+
autogen/tools/experimental/firecrawl/__init__.py,sha256=L-_y07Pzq4TeIIIoYce-catqiZI8f1UAAQpUoL-iYmA,215
|
|
383
|
+
autogen/tools/experimental/firecrawl/firecrawl_tool.py,sha256=UQ9YQoVcB4NDiPUMxFG2yCG37Pcaks43g1MQbCrLAw0,34411
|
|
384
|
+
autogen/tools/experimental/google/__init__.py,sha256=_j5i9rzajzilQetKCPh5QkX60p1iOri2Yw69zIKAdU0,461
|
|
385
|
+
autogen/tools/experimental/google/model.py,sha256=hm3ynXSJAjeld85iSHo9QgIehoWEqeVhbSPC3EaHm0M,515
|
|
386
|
+
autogen/tools/experimental/google/toolkit_protocol.py,sha256=Jg9aSy4sKDr-yYVxevYr7zbEcmA9EwFWrJBOogLfKJU,485
|
|
387
|
+
autogen/tools/experimental/google/authentication/__init__.py,sha256=9xmOghr2lpxrh7yNOyISFP3z2ZoL4kN0lzBDoMzyglE,361
|
|
388
|
+
autogen/tools/experimental/google/authentication/credentials_hosted_provider.py,sha256=LdMhmMGqCcgQNsw3xeteSwTlKp-UkTWJJLUxJx7lewA,1268
|
|
389
|
+
autogen/tools/experimental/google/authentication/credentials_local_provider.py,sha256=0bpubEDXH-zO2KI2gfvOc1umcL1ykrESnPiecXOPfWk,3354
|
|
390
|
+
autogen/tools/experimental/google/authentication/credentials_provider.py,sha256=mQZx7tDn8FzV0U31Nf27tjTjgFK8x8MxK67i_sG8e28,980
|
|
391
|
+
autogen/tools/experimental/google/drive/__init__.py,sha256=UlZiMgZD5xKj1rou3iS9qHAprkqhJMWpESJmLFT8HXE,225
|
|
392
|
+
autogen/tools/experimental/google/drive/drive_functions.py,sha256=i0VAkHEbQSdm9VjsYDqyR96LqpJpUawkRbZcqPNBXls,4478
|
|
393
|
+
autogen/tools/experimental/google/drive/toolkit.py,sha256=9BzwUM6w5jYxDYTOjawCxzPdQR96RKsOYlbcvrDGQHQ,3382
|
|
394
|
+
autogen/tools/experimental/google_search/__init__.py,sha256=_4eCvmps86qChxDfPw-R9I6-05xKFtYMX-mww8-OhZE,287
|
|
395
|
+
autogen/tools/experimental/google_search/google_search.py,sha256=nfXxg-6wPIrxMENeHOD73IcRWm8hlRDp9QV0otWiZFM,3835
|
|
396
|
+
autogen/tools/experimental/google_search/youtube_search.py,sha256=obuI00bscufv61CpqnjtJ4_hjNRQ_J435O0Ct48ts6Y,6361
|
|
397
|
+
autogen/tools/experimental/messageplatform/__init__.py,sha256=R_DBu-edxl8iDJSUVsByqiNVgPZzKB5qJERQ8KLknrI,536
|
|
398
|
+
autogen/tools/experimental/messageplatform/discord/__init__.py,sha256=QUdlQ_qOpLv_78txQyTURRw86GcLrYI7UwQU-5aoxK4,256
|
|
399
|
+
autogen/tools/experimental/messageplatform/discord/discord.py,sha256=stcHuUOKPsTzbQUcukn7etpDMDr1A1fz3kVt-vrimUY,12358
|
|
400
|
+
autogen/tools/experimental/messageplatform/slack/__init__.py,sha256=LzsMMPw-_K1kt8L17js0sSematFF8GfX4h-aI6jKB0k,300
|
|
401
|
+
autogen/tools/experimental/messageplatform/slack/slack.py,sha256=smmbgnVBoeL8IUFRia7IQehszPAFBaeiizQHmqrr050,18708
|
|
402
|
+
autogen/tools/experimental/messageplatform/telegram/__init__.py,sha256=gPhyMHRvuCn3s2j6b9UFEte0yCC2gFYgTiVHTBrM4dc,261
|
|
403
|
+
autogen/tools/experimental/messageplatform/telegram/telegram.py,sha256=DKdYlsbE-maHVHAEI6Yd2aoblJo4-WzdyVMb6E6lMPE,12264
|
|
404
|
+
autogen/tools/experimental/perplexity/__init__.py,sha256=VxWG2HfcxwBhLUV4LnAlte9T2dH5dXIy-78gkPVfwSI,232
|
|
405
|
+
autogen/tools/experimental/perplexity/perplexity_search.py,sha256=mIRJYh9QCo4CEm2AzgK7YyrUywDkbTm-5gtWg63ytyw,9856
|
|
406
|
+
autogen/tools/experimental/reliable/__init__.py,sha256=GLvfvsFLfBANFVcOptIa_Tm71YsHt5U7X5N9quqDZW0,479
|
|
407
|
+
autogen/tools/experimental/reliable/reliable.py,sha256=5IUS_YM8N7WJEqu9z3xFL2nKzJtAC9ilIBo94G0kV9Y,64426
|
|
408
|
+
autogen/tools/experimental/searxng/__init__.py,sha256=IiScuchBMO0wDPUo58s41aQbr0CrTkumHeZj-eSzZJo,223
|
|
409
|
+
autogen/tools/experimental/searxng/searxng_search.py,sha256=EJadnyHIFLdJCt158IlbSm3JHGA1Ip4FF8ECC05otYE,4848
|
|
410
|
+
autogen/tools/experimental/tavily/__init__.py,sha256=rvztagn7FpWiXZwJtZmKbIFBteBenaedwsiUViDyC4Y,220
|
|
411
|
+
autogen/tools/experimental/tavily/tavily_search.py,sha256=uQ-4u7P3QPdJnCDANVBJvGTBuq2TVw2VNHfL8T3i904,7715
|
|
412
|
+
autogen/tools/experimental/web_search_preview/__init__.py,sha256=8vd1XWS14883MQ4U4dHvMP8aAKAtMILLnqRJNzgNh6A,233
|
|
413
|
+
autogen/tools/experimental/web_search_preview/web_search_preview.py,sha256=Aj0agNhaHexlPqBd0VBvRCqZ9rdxY2cLIKaxkElDf34,5095
|
|
414
|
+
autogen/tools/experimental/wikipedia/__init__.py,sha256=jS_gUMyz-uCWr75yKv2esIiGz0ijNDNokt6wovQULLE,274
|
|
415
|
+
autogen/tools/experimental/wikipedia/wikipedia.py,sha256=phtwNOW5KcvXq-1-3yYjm6EJbG2KBMPEgQq_yeTX7r8,11490
|
|
416
|
+
templates/main.jinja2,sha256=mu7z_4NjI1XMEwQx9KaFQixi4ImfwY0FZQaYUJVBnSc,1765
|
|
417
|
+
templates/client_template/main.jinja2,sha256=9_1pmPNLlPZpfcE0KqXJ6uBVzQtmFqWbxs2xyzCOfxY,2115
|
|
418
|
+
templates/config_template/config.jinja2,sha256=A-p-YBsnEm1iftBIhuIBfIyCY-qw34KWcxalmM6KPWc,167
|
|
419
|
+
ag2-0.10.2.dist-info/METADATA,sha256=yLTc2XjeThDPM9_Kn0XfEZiBCb3XiZV7H-eIAfxQwP0,36206
|
|
420
|
+
ag2-0.10.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
421
|
+
ag2-0.10.2.dist-info/licenses/LICENSE,sha256=GEFQVNayAR-S_rQD5l8hPdgvgyktVdy4Bx5-v90IfRI,11384
|
|
422
|
+
ag2-0.10.2.dist-info/licenses/NOTICE.md,sha256=07iCPQGbth4pQrgkSgZinJGT5nXddkZ6_MGYcBd2oiY,1134
|
|
423
|
+
ag2-0.10.2.dist-info/RECORD,,
|