ag2 0.9.6__py3-none-any.whl → 0.9.8.post1__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.6.dist-info → ag2-0.9.8.post1.dist-info}/METADATA +102 -75
- ag2-0.9.8.post1.dist-info/RECORD +387 -0
- autogen/__init__.py +1 -2
- autogen/_website/generate_api_references.py +4 -5
- autogen/_website/generate_mkdocs.py +9 -15
- autogen/_website/notebook_processor.py +13 -14
- autogen/_website/process_notebooks.py +10 -10
- autogen/_website/utils.py +5 -4
- autogen/agentchat/agent.py +13 -13
- autogen/agentchat/assistant_agent.py +7 -6
- autogen/agentchat/contrib/agent_eval/agent_eval.py +3 -3
- autogen/agentchat/contrib/agent_eval/critic_agent.py +3 -3
- autogen/agentchat/contrib/agent_eval/quantifier_agent.py +3 -3
- autogen/agentchat/contrib/agent_eval/subcritic_agent.py +3 -3
- autogen/agentchat/contrib/agent_optimizer.py +3 -3
- autogen/agentchat/contrib/capabilities/generate_images.py +11 -11
- autogen/agentchat/contrib/capabilities/teachability.py +15 -15
- autogen/agentchat/contrib/capabilities/transforms.py +17 -18
- autogen/agentchat/contrib/capabilities/transforms_util.py +5 -5
- autogen/agentchat/contrib/capabilities/vision_capability.py +4 -3
- autogen/agentchat/contrib/captainagent/agent_builder.py +30 -30
- autogen/agentchat/contrib/captainagent/captainagent.py +22 -21
- autogen/agentchat/contrib/captainagent/tool_retriever.py +2 -3
- autogen/agentchat/contrib/gpt_assistant_agent.py +9 -9
- autogen/agentchat/contrib/graph_rag/document.py +3 -3
- autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py +3 -3
- autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py +6 -6
- autogen/agentchat/contrib/graph_rag/graph_query_engine.py +3 -3
- autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py +5 -11
- autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py +6 -6
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py +7 -7
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py +6 -6
- autogen/agentchat/contrib/img_utils.py +1 -1
- autogen/agentchat/contrib/llamaindex_conversable_agent.py +11 -11
- autogen/agentchat/contrib/llava_agent.py +18 -4
- autogen/agentchat/contrib/math_user_proxy_agent.py +11 -11
- autogen/agentchat/contrib/multimodal_conversable_agent.py +8 -8
- autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +6 -5
- autogen/agentchat/contrib/rag/chromadb_query_engine.py +22 -26
- autogen/agentchat/contrib/rag/llamaindex_query_engine.py +14 -17
- autogen/agentchat/contrib/rag/mongodb_query_engine.py +27 -37
- autogen/agentchat/contrib/rag/query_engine.py +7 -5
- autogen/agentchat/contrib/retrieve_assistant_agent.py +5 -5
- autogen/agentchat/contrib/retrieve_user_proxy_agent.py +8 -7
- autogen/agentchat/contrib/society_of_mind_agent.py +15 -14
- autogen/agentchat/contrib/swarm_agent.py +76 -98
- autogen/agentchat/contrib/text_analyzer_agent.py +7 -7
- autogen/agentchat/contrib/vectordb/base.py +10 -18
- autogen/agentchat/contrib/vectordb/chromadb.py +2 -1
- autogen/agentchat/contrib/vectordb/couchbase.py +18 -20
- autogen/agentchat/contrib/vectordb/mongodb.py +6 -5
- autogen/agentchat/contrib/vectordb/pgvectordb.py +40 -41
- autogen/agentchat/contrib/vectordb/qdrant.py +5 -5
- autogen/agentchat/contrib/web_surfer.py +20 -19
- autogen/agentchat/conversable_agent.py +311 -295
- autogen/agentchat/group/context_str.py +1 -3
- autogen/agentchat/group/context_variables.py +15 -25
- autogen/agentchat/group/group_tool_executor.py +10 -10
- autogen/agentchat/group/group_utils.py +15 -15
- autogen/agentchat/group/guardrails.py +7 -7
- autogen/agentchat/group/handoffs.py +19 -36
- autogen/agentchat/group/multi_agent_chat.py +7 -7
- autogen/agentchat/group/on_condition.py +4 -7
- autogen/agentchat/group/on_context_condition.py +4 -7
- autogen/agentchat/group/patterns/auto.py +8 -7
- autogen/agentchat/group/patterns/manual.py +7 -6
- autogen/agentchat/group/patterns/pattern.py +13 -12
- autogen/agentchat/group/patterns/random.py +3 -3
- autogen/agentchat/group/patterns/round_robin.py +3 -3
- autogen/agentchat/group/reply_result.py +2 -4
- autogen/agentchat/group/speaker_selection_result.py +5 -5
- autogen/agentchat/group/targets/group_chat_target.py +7 -6
- autogen/agentchat/group/targets/group_manager_target.py +4 -4
- autogen/agentchat/group/targets/transition_target.py +2 -1
- autogen/agentchat/groupchat.py +58 -61
- autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py +4 -4
- autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py +4 -4
- autogen/agentchat/realtime/experimental/clients/gemini/client.py +7 -7
- autogen/agentchat/realtime/experimental/clients/oai/base_client.py +8 -8
- autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py +6 -6
- autogen/agentchat/realtime/experimental/clients/realtime_client.py +10 -9
- autogen/agentchat/realtime/experimental/realtime_agent.py +10 -9
- autogen/agentchat/realtime/experimental/realtime_observer.py +3 -3
- autogen/agentchat/realtime/experimental/realtime_swarm.py +44 -44
- autogen/agentchat/user_proxy_agent.py +10 -9
- autogen/agentchat/utils.py +3 -3
- autogen/agents/contrib/time/time_reply_agent.py +6 -5
- autogen/agents/contrib/time/time_tool_agent.py +2 -1
- autogen/agents/experimental/deep_research/deep_research.py +3 -3
- autogen/agents/experimental/discord/discord.py +2 -2
- autogen/agents/experimental/document_agent/chroma_query_engine.py +29 -44
- autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py +9 -14
- autogen/agents/experimental/document_agent/document_agent.py +15 -16
- autogen/agents/experimental/document_agent/document_conditions.py +3 -3
- autogen/agents/experimental/document_agent/document_utils.py +5 -9
- autogen/agents/experimental/document_agent/inmemory_query_engine.py +14 -20
- autogen/agents/experimental/document_agent/parser_utils.py +4 -4
- autogen/agents/experimental/document_agent/url_utils.py +14 -23
- autogen/agents/experimental/reasoning/reasoning_agent.py +33 -33
- autogen/agents/experimental/slack/slack.py +2 -2
- autogen/agents/experimental/telegram/telegram.py +2 -3
- autogen/agents/experimental/websurfer/websurfer.py +4 -4
- autogen/agents/experimental/wikipedia/wikipedia.py +5 -7
- autogen/browser_utils.py +8 -8
- autogen/cache/abstract_cache_base.py +5 -5
- autogen/cache/cache.py +12 -12
- autogen/cache/cache_factory.py +4 -4
- autogen/cache/cosmos_db_cache.py +9 -9
- autogen/cache/disk_cache.py +6 -6
- autogen/cache/in_memory_cache.py +4 -4
- autogen/cache/redis_cache.py +4 -4
- autogen/code_utils.py +18 -18
- autogen/coding/base.py +6 -6
- autogen/coding/docker_commandline_code_executor.py +9 -9
- autogen/coding/func_with_reqs.py +7 -6
- autogen/coding/jupyter/base.py +3 -3
- autogen/coding/jupyter/docker_jupyter_server.py +3 -4
- autogen/coding/jupyter/import_utils.py +3 -3
- autogen/coding/jupyter/jupyter_client.py +5 -5
- autogen/coding/jupyter/jupyter_code_executor.py +3 -4
- autogen/coding/jupyter/local_jupyter_server.py +2 -6
- autogen/coding/local_commandline_code_executor.py +8 -7
- autogen/coding/markdown_code_extractor.py +1 -2
- autogen/coding/utils.py +1 -2
- autogen/doc_utils.py +3 -2
- autogen/environments/docker_python_environment.py +19 -29
- autogen/environments/python_environment.py +8 -17
- autogen/environments/system_python_environment.py +3 -4
- autogen/environments/venv_python_environment.py +8 -12
- autogen/environments/working_directory.py +1 -2
- autogen/events/agent_events.py +106 -109
- autogen/events/base_event.py +6 -5
- autogen/events/client_events.py +15 -14
- autogen/events/helpers.py +1 -1
- autogen/events/print_event.py +4 -5
- autogen/fast_depends/_compat.py +10 -15
- autogen/fast_depends/core/build.py +17 -36
- autogen/fast_depends/core/model.py +64 -113
- autogen/fast_depends/dependencies/model.py +2 -1
- autogen/fast_depends/dependencies/provider.py +3 -2
- autogen/fast_depends/library/model.py +4 -4
- autogen/fast_depends/schema.py +7 -7
- autogen/fast_depends/use.py +17 -25
- autogen/fast_depends/utils.py +10 -30
- autogen/formatting_utils.py +6 -6
- autogen/graph_utils.py +1 -4
- autogen/import_utils.py +13 -13
- autogen/interop/crewai/crewai.py +2 -2
- autogen/interop/interoperable.py +2 -2
- autogen/interop/langchain/langchain_chat_model_factory.py +3 -2
- autogen/interop/langchain/langchain_tool.py +2 -6
- autogen/interop/litellm/litellm_config_factory.py +6 -7
- autogen/interop/pydantic_ai/pydantic_ai.py +4 -7
- autogen/interop/registry.py +2 -1
- autogen/io/base.py +5 -5
- autogen/io/run_response.py +33 -32
- autogen/io/websockets.py +6 -5
- autogen/json_utils.py +1 -2
- autogen/llm_config/__init__.py +11 -0
- autogen/llm_config/client.py +58 -0
- autogen/llm_config/config.py +384 -0
- autogen/llm_config/entry.py +154 -0
- autogen/logger/base_logger.py +4 -3
- autogen/logger/file_logger.py +2 -1
- autogen/logger/logger_factory.py +2 -2
- autogen/logger/logger_utils.py +2 -2
- autogen/logger/sqlite_logger.py +3 -2
- autogen/math_utils.py +4 -5
- autogen/mcp/__main__.py +6 -6
- autogen/mcp/helpers.py +4 -4
- autogen/mcp/mcp_client.py +170 -29
- autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py +3 -4
- autogen/mcp/mcp_proxy/mcp_proxy.py +23 -26
- autogen/mcp/mcp_proxy/operation_grouping.py +4 -5
- autogen/mcp/mcp_proxy/operation_renaming.py +6 -10
- autogen/mcp/mcp_proxy/security.py +2 -3
- autogen/messages/agent_messages.py +96 -98
- autogen/messages/base_message.py +6 -5
- autogen/messages/client_messages.py +15 -14
- autogen/messages/print_message.py +4 -5
- autogen/oai/__init__.py +1 -2
- autogen/oai/anthropic.py +42 -41
- autogen/oai/bedrock.py +68 -57
- autogen/oai/cerebras.py +26 -25
- autogen/oai/client.py +118 -138
- autogen/oai/client_utils.py +3 -3
- autogen/oai/cohere.py +34 -11
- autogen/oai/gemini.py +40 -17
- autogen/oai/gemini_types.py +11 -12
- autogen/oai/groq.py +22 -10
- autogen/oai/mistral.py +17 -11
- autogen/oai/oai_models/__init__.py +14 -2
- autogen/oai/oai_models/_models.py +2 -2
- autogen/oai/oai_models/chat_completion.py +13 -14
- autogen/oai/oai_models/chat_completion_message.py +11 -9
- autogen/oai/oai_models/chat_completion_message_tool_call.py +26 -3
- autogen/oai/oai_models/chat_completion_token_logprob.py +3 -4
- autogen/oai/oai_models/completion_usage.py +8 -9
- autogen/oai/ollama.py +22 -10
- autogen/oai/openai_responses.py +40 -17
- autogen/oai/openai_utils.py +159 -85
- autogen/oai/together.py +29 -14
- autogen/retrieve_utils.py +6 -7
- autogen/runtime_logging.py +5 -4
- autogen/token_count_utils.py +7 -4
- autogen/tools/contrib/time/time.py +0 -1
- autogen/tools/dependency_injection.py +5 -6
- autogen/tools/experimental/browser_use/browser_use.py +10 -10
- autogen/tools/experimental/code_execution/python_code_execution.py +5 -7
- autogen/tools/experimental/crawl4ai/crawl4ai.py +12 -15
- autogen/tools/experimental/deep_research/deep_research.py +9 -8
- autogen/tools/experimental/duckduckgo/duckduckgo_search.py +5 -11
- autogen/tools/experimental/firecrawl/firecrawl_tool.py +98 -115
- autogen/tools/experimental/google/authentication/credentials_local_provider.py +1 -1
- autogen/tools/experimental/google/drive/drive_functions.py +4 -4
- autogen/tools/experimental/google/drive/toolkit.py +5 -5
- autogen/tools/experimental/google_search/google_search.py +5 -5
- autogen/tools/experimental/google_search/youtube_search.py +5 -5
- autogen/tools/experimental/messageplatform/discord/discord.py +8 -12
- autogen/tools/experimental/messageplatform/slack/slack.py +14 -20
- autogen/tools/experimental/messageplatform/telegram/telegram.py +8 -12
- autogen/tools/experimental/perplexity/perplexity_search.py +18 -29
- autogen/tools/experimental/reliable/reliable.py +68 -74
- autogen/tools/experimental/searxng/searxng_search.py +20 -19
- autogen/tools/experimental/tavily/tavily_search.py +12 -19
- autogen/tools/experimental/web_search_preview/web_search_preview.py +13 -7
- autogen/tools/experimental/wikipedia/wikipedia.py +7 -10
- autogen/tools/function_utils.py +7 -7
- autogen/tools/tool.py +6 -5
- autogen/types.py +2 -2
- autogen/version.py +1 -1
- ag2-0.9.6.dist-info/RECORD +0 -421
- autogen/llm_config.py +0 -385
- {ag2-0.9.6.dist-info → ag2-0.9.8.post1.dist-info}/WHEEL +0 -0
- {ag2-0.9.6.dist-info → ag2-0.9.8.post1.dist-info}/licenses/LICENSE +0 -0
- {ag2-0.9.6.dist-info → ag2-0.9.8.post1.dist-info}/licenses/NOTICE.md +0 -0
ag2-0.9.6.dist-info/RECORD
DELETED
|
@@ -1,421 +0,0 @@
|
|
|
1
|
-
autogen/__init__.py,sha256=8JVF68yM6D3qsY2ZXLOwX0C7QK2td45Veka3d5zAGHA,2108
|
|
2
|
-
autogen/browser_utils.py,sha256=tkNiADQuO27htXvj1FcQfGvw02Qjn-L-l5A0MJhc8lY,13264
|
|
3
|
-
autogen/code_utils.py,sha256=7-u4a0O24c0P3vfag5R7lCPze7uFjFDVCktOxESD87A,24118
|
|
4
|
-
autogen/doc_utils.py,sha256=RwKfLUKAnRLYLFI_ffiko6Y7NWG0fxEzpBQjJJOc4D0,1046
|
|
5
|
-
autogen/exception_utils.py,sha256=YpuaczyoZ4wHFhyv1a_UA9CpUN2KKIU4johIRm_mOaQ,2486
|
|
6
|
-
autogen/formatting_utils.py,sha256=JfENmuHOmDQEQSUPOMvc8e4jAaJ2CJyppp4Fw9ePPDc,2122
|
|
7
|
-
autogen/function_utils.py,sha256=YnzwNFA49Jbbe4riAY1sinYcKphg5lrHFCXx0POdYbw,481
|
|
8
|
-
autogen/graph_utils.py,sha256=2dfGUHZCCF629vh0vMK9WMXIX-Zi-if9NbdC0KFcuw4,7904
|
|
9
|
-
autogen/import_utils.py,sha256=byPlexRvu1bkGzEAtwwtJ2SQIm1IzModK9B5ONGkqJw,17634
|
|
10
|
-
autogen/json_utils.py,sha256=_61k__3SS1-ffE2K5Mm9ZGHQJBRUbOL9kHGQGTAWRZk,1378
|
|
11
|
-
autogen/llm_config.py,sha256=lQPV3zXbLKL_7rJHi1fJAJn1NpNK7wZtqGUxHeapIZQ,14437
|
|
12
|
-
autogen/math_utils.py,sha256=Ew9-I5chny9eAOnphGxKf6XCeW6Pepz5S-5touWrbYU,9546
|
|
13
|
-
autogen/retrieve_utils.py,sha256=R3Yp5d8dH4o9ayLZrGn4rCjIaY4glOHIiyQjwClmdi8,20087
|
|
14
|
-
autogen/runtime_logging.py,sha256=yCmZODvwqYR91m8lX3Q4SoPcY-DK48NF4m56CP6Om3c,4692
|
|
15
|
-
autogen/token_count_utils.py,sha256=n4wTFVNHwrfjZkrErFr8kNig2K-YCGgMLWsjDRS9D6g,10797
|
|
16
|
-
autogen/types.py,sha256=qu-7eywhakW2AxQ5lYisLLeIg45UoOW-b3ErIuyRTuw,1000
|
|
17
|
-
autogen/version.py,sha256=Gx2IBExx_OQsL98JzXZ9G56t2UljGjVfvrmaV4UzVp4,193
|
|
18
|
-
autogen/_website/__init__.py,sha256=c8B9TpO07x9neD0zsJWj6AaEdlcP-WvxrvVOGWLtamk,143
|
|
19
|
-
autogen/_website/generate_api_references.py,sha256=yKqyeSP_NE27wwLYWsZbTYRceEoxzNxPXqn6vsIzEvk,14789
|
|
20
|
-
autogen/_website/generate_mkdocs.py,sha256=TkmLnUDv1Ms5cGClXPmenA8nxmwg4kR0E-FHCVjw_og,43246
|
|
21
|
-
autogen/_website/notebook_processor.py,sha256=zg2oIgEmjBZRS5kQk9RYmG8ZRAzq0vi0odQFAfqnltE,16542
|
|
22
|
-
autogen/_website/process_notebooks.py,sha256=cC_PILTpiPHYN-Oq4W-lbu_lBei6mYXVR-XbNU5pd_Q,25993
|
|
23
|
-
autogen/_website/utils.py,sha256=fSyOQagE8lMFg_gg-zGKR_9e7fRopuNr7RZ3PDnsddQ,14727
|
|
24
|
-
autogen/agentchat/__init__.py,sha256=d5jPpXeavynP9eh5uMIgJKbK3-3tywJBa6l3L9X4l34,1347
|
|
25
|
-
autogen/agentchat/agent.py,sha256=HePNJ5BXJTcZtaD2a8CoTeHAoLUUy3scM6Ihm-NsSWk,5828
|
|
26
|
-
autogen/agentchat/assistant_agent.py,sha256=XTJvD66r4qYkdNAJJLr1CC-wTYFJWvhmD5_G0WbbX2I,5741
|
|
27
|
-
autogen/agentchat/chat.py,sha256=6Gx2t1-Xa8kP6ZoUihHBNGOqNlrGhhqLPKrckL0n-RI,14003
|
|
28
|
-
autogen/agentchat/conversable_agent.py,sha256=-BNwxfqSaHQi428a6xgz_53ThPC8LDsdHzHiWzNsPtc,192671
|
|
29
|
-
autogen/agentchat/groupchat.py,sha256=vdK8zUX2CG8fR5pkPGWX7Zn7DFwLvld0bpaRv3vOBEo,89471
|
|
30
|
-
autogen/agentchat/user_proxy_agent.py,sha256=-gbDblRvE09FGuVB6-y5ZT9Cpvv--rM3FMi8PnPIFBA,7445
|
|
31
|
-
autogen/agentchat/utils.py,sha256=2ZweUqe4ynxji0jnvd0r9Uxg3n0elif4a-jZOyeeqcg,8238
|
|
32
|
-
autogen/agentchat/contrib/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
33
|
-
autogen/agentchat/contrib/agent_optimizer.py,sha256=Y0H9unXXCOmBo6P-njtH3L_vmMCdwp0B9Kiihg8HBy4,22431
|
|
34
|
-
autogen/agentchat/contrib/gpt_assistant_agent.py,sha256=0zne7MZBVYlxvYdI-Iu2BRziPSYQPZ1fg0XjfFzt9BA,25051
|
|
35
|
-
autogen/agentchat/contrib/img_utils.py,sha256=BNc1ELE2dSzmFCc_9zwcdazmUxDZZrQv8jgXJZaheCM,15121
|
|
36
|
-
autogen/agentchat/contrib/llamaindex_conversable_agent.py,sha256=sAbBmYIBB4RJt-GhgNzA5QSX4CP0q2eusQNa6K2_LA4,4595
|
|
37
|
-
autogen/agentchat/contrib/llava_agent.py,sha256=C6JE-UKM4bpaY4ReWgkkhw6L1_h3qjMgo7qO6qdSV2w,6619
|
|
38
|
-
autogen/agentchat/contrib/math_user_proxy_agent.py,sha256=ofDrm9fReLyPO2vOB64GZH2DDJBWUZuIZrOPtJZ7pfA,19718
|
|
39
|
-
autogen/agentchat/contrib/multimodal_conversable_agent.py,sha256=5HjKjCCGfBKdohPoFs6CeC5VDOJaxa_lkCa8_0MDFSg,5166
|
|
40
|
-
autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py,sha256=jejNwCpdAIvHYqm0HWgRcHUNHe53UMg-zjeXMsEROtk,19383
|
|
41
|
-
autogen/agentchat/contrib/retrieve_assistant_agent.py,sha256=zIoFcNkb_qUvb2Qjdh7gprL1SXWeZt7dKyVmmEPKEBY,2436
|
|
42
|
-
autogen/agentchat/contrib/retrieve_user_proxy_agent.py,sha256=1EZl3_w1nRZDKuPwqr5LgWJKcUlZjsLxp9lC1QBtnng,37362
|
|
43
|
-
autogen/agentchat/contrib/society_of_mind_agent.py,sha256=Zhe54XyvxsX6XCobh_0JGwLHalVHu3ip28EEdelRlOk,9153
|
|
44
|
-
autogen/agentchat/contrib/swarm_agent.py,sha256=5IeMTf-oyj-AvV4qBypN2yS-Wxnacxetl1XrepBylBY,66534
|
|
45
|
-
autogen/agentchat/contrib/text_analyzer_agent.py,sha256=t-sKa9xWkD5et921JItuA3sjgiWBMpbHCaF6D4Ho2Nw,3739
|
|
46
|
-
autogen/agentchat/contrib/web_surfer.py,sha256=idtTuzVfdYcxmMZVnWgvtTjZxving-Tu2_nWuSAJFLI,14596
|
|
47
|
-
autogen/agentchat/contrib/agent_eval/README.md,sha256=3uDjyARQVX3QJXDm05L33x8lp0zYbk2yJj4foBSq3qc,587
|
|
48
|
-
autogen/agentchat/contrib/agent_eval/agent_eval.py,sha256=_cbQZ90yplL5PmUqGoCsFccPpS1fSpQmyFv-7LX0FJk,4015
|
|
49
|
-
autogen/agentchat/contrib/agent_eval/criterion.py,sha256=-kJxoqyIhK6ZqKKWmcAt6zyymS5SOU9j1siVMWztIqk,1339
|
|
50
|
-
autogen/agentchat/contrib/agent_eval/critic_agent.py,sha256=MUnMs25QDXt9gRQBWSIWzPi_s2-8vTTaShizsTyjW1A,2090
|
|
51
|
-
autogen/agentchat/contrib/agent_eval/quantifier_agent.py,sha256=RQWEdjvC7iyByQ9YyZkSlSCOcVv7ldbBcLkh19K6YZM,2028
|
|
52
|
-
autogen/agentchat/contrib/agent_eval/subcritic_agent.py,sha256=izpi47H2jj76G65xfFCbov1IAp4iz65Fi49kRn4SAaQ,2647
|
|
53
|
-
autogen/agentchat/contrib/agent_eval/task.py,sha256=s890Gbz6boscDyTuwuTmqa-GhdqE0qXIRr-pZYG1H2I,1419
|
|
54
|
-
autogen/agentchat/contrib/capabilities/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
55
|
-
autogen/agentchat/contrib/capabilities/agent_capability.py,sha256=lRHkFzk--FJIyl9mTXc1GDXjCfewUbhHFPih0DrvKXw,786
|
|
56
|
-
autogen/agentchat/contrib/capabilities/generate_images.py,sha256=j8PvuYqFe0q_p2YJgKIyw2kPEhWJeooFT16W5Wovkk0,12893
|
|
57
|
-
autogen/agentchat/contrib/capabilities/teachability.py,sha256=tn3o7q-5vC7O-EFy7IQdmwpZahswQNzjEr0b1L6YEUE,19418
|
|
58
|
-
autogen/agentchat/contrib/capabilities/text_compressors.py,sha256=tm5WDf0AC0VznFJ44Hy7zHh_Erar2c1OjExVt1MG8j8,2985
|
|
59
|
-
autogen/agentchat/contrib/capabilities/tools_capability.py,sha256=iSECQqsHp-MBWu6Huo6OAH4ehSI04QYDGQBjUupFsPI,773
|
|
60
|
-
autogen/agentchat/contrib/capabilities/transform_messages.py,sha256=bFUxDkq0jWLcgccE3Zp4_JD12zIVRE7AMVFwSJqssSY,3783
|
|
61
|
-
autogen/agentchat/contrib/capabilities/transforms.py,sha256=Ow3zPEPAnUfHoiH96vNxvjWGk5TVCqtttyqlkS3X2Dk,26292
|
|
62
|
-
autogen/agentchat/contrib/capabilities/transforms_util.py,sha256=XjTkE_i-SArRPBuLmVaZYhJMY2RgNHjz2m_iF-lKUJM,4559
|
|
63
|
-
autogen/agentchat/contrib/capabilities/vision_capability.py,sha256=kHUeIPvICOR-tLQ6g6AdNWtcbhrUKPIfg42ISqGzrA4,9872
|
|
64
|
-
autogen/agentchat/contrib/captainagent/__init__.py,sha256=12X-ClPVPXBnN59wduSLhQ-PmUWXO45vvafHPQOUVV8,414
|
|
65
|
-
autogen/agentchat/contrib/captainagent/agent_builder.py,sha256=vlNT3YS-TpDVlTuXf7K3lsJt_Oet6epiMtabGQlXIjg,34264
|
|
66
|
-
autogen/agentchat/contrib/captainagent/captainagent.py,sha256=PUYBXHmikaT4-fQ3lZkblqkCcJwPsHDXNy5MAkiY3k0,27376
|
|
67
|
-
autogen/agentchat/contrib/captainagent/tool_retriever.py,sha256=srDVebOvVSIcNi6-3_pPXUDsxquGOwyuvy0UK-mhvcQ,12804
|
|
68
|
-
autogen/agentchat/contrib/captainagent/tools/README.md,sha256=454O-irP4gjSdYnFgoE0i3BfueXO0qFONxe3GMxMpHg,1677
|
|
69
|
-
autogen/agentchat/contrib/captainagent/tools/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
70
|
-
autogen/agentchat/contrib/captainagent/tools/requirements.txt,sha256=z2uZXzuO-MT_d0EPrk9G3Ct2cQeS-KTj0p7HdgqiEYg,110
|
|
71
|
-
autogen/agentchat/contrib/captainagent/tools/tool_description.tsv,sha256=FoTCONw59WUTNswa23ze6a2MOyvCuhZ8TZddPdU1ACE,3857
|
|
72
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_correlation.py,sha256=7w4d_ica3WBK6xwdblTU9S-tfzhHyrOHYWvU4Bs-08c,1712
|
|
73
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_skewness_and_kurtosis.py,sha256=XHBUs7g3MSJNVNe1dLUl3fu93OsVSDeDL_N-NZRmk4o,955
|
|
74
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_iqr.py,sha256=sh9X19sBWo7MPheBBW0oxWjVThjqTA9sg0d0Qe9L5xw,987
|
|
75
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_zscore.py,sha256=lUZrd55FpkIP5mbAa4ZTMLuGdMlfX4LHF_Y6HCFEGXo,1156
|
|
76
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/explore_csv.py,sha256=E-uSeRbIWdkqePa9mdPJrlXRk1xreQS8QzeA80WgFmE,717
|
|
77
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/shapiro_wilk_test.py,sha256=q-jzsu43UnlPFwhqnYYDE0SHLCXv6Z7o3V83eNASM0k,904
|
|
78
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_download.py,sha256=e8dcovrQBmKuvrlR6iNgSY7W_kU3NyqMHhjYUw0ucwY,966
|
|
79
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_search.py,sha256=gXVR-uXxML9Eoce5O96BuASvHeMwMILSdnoMFw15tqo,2062
|
|
80
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_image.py,sha256=WoOehyC_-qZEI2Tfvspel0fxdtGYdjlBUgKcMCtFi6M,1841
|
|
81
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_text.py,sha256=Jnq8BKHHUBzMac7joZtHzY3VxJGO48aKi6XIJu2UyQ0,1107
|
|
82
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_wikipedia_text.py,sha256=N89cJkKsWWOVZ81LFGCML_lckqd6cRtqMXb2xIw_Lms,680
|
|
83
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_youtube_caption.py,sha256=97vxZvTUtQvo7JbHVah8tFvLoIPPdc6Y_1WnSjP-yMY,1105
|
|
84
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/image_qa.py,sha256=clFskT2gTGK9cIMvn7zVC-a6xEavAM3ScVyQLc-TPZY,2203
|
|
85
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/optical_character_recognition.py,sha256=xtSkJ8vXrkpKqCjhgmkChpXcXZHDnS4BgUPXoLaTcck,1936
|
|
86
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/perform_web_search.py,sha256=Gu-s9NobPkdaQCtncpeRHfMR5X7T76srhnpTCQFft9A,1545
|
|
87
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/scrape_wikipedia_tables.py,sha256=xqhIwo6xeUGvnA1e2GFmYJ-2dxFoNqCjZW6ettRgITI,1346
|
|
88
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/transcribe_audio_file.py,sha256=N9D6dy3709oppcZszBHkwO0f7oHe9DzCrahE-ofZY_g,615
|
|
89
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/youtube_download.py,sha256=JH-jKe0gKFqLGOgWg6ppjD0kUcp3rV-1Y3g1Qu1Yf5s,1020
|
|
90
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_circle_area_from_diameter.py,sha256=cVuexCoTOzFS4icvZS4s7XFs9D5rYV1Am9eJGDj9Jsk,556
|
|
91
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_day_of_the_week.py,sha256=W8a0qb1v1BuDmvXkehbH8wY6Dw1qayQSMWGX81Vb6R0,803
|
|
92
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_fraction_sum.py,sha256=8rESE7EqQtWJHpghq1_pqRWjzKtYfj3Ki9XhaQqXpHY,1265
|
|
93
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_matrix_power.py,sha256=iG7tJH_cTB2Jw9BV9onsJGmLZnhCrbZrU8QG3ANIEZM,946
|
|
94
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_reflected_point.py,sha256=Iv4ccq1RgXXWdxicoNN_ee3vEfmVeesLDcCbrZ2SlIU,709
|
|
95
|
-
autogen/agentchat/contrib/captainagent/tools/math/complex_numbers_product.py,sha256=Ah8cyJNU9vH6W2OvCgqXUE75dGY5Bu9TCZn3uBHmvLQ,816
|
|
96
|
-
autogen/agentchat/contrib/captainagent/tools/math/compute_currency_conversion.py,sha256=lC0unY_a1KIt1P42YJbXqWAsFQn-sCKxmkYXnPw2BW0,851
|
|
97
|
-
autogen/agentchat/contrib/captainagent/tools/math/count_distinct_permutations.py,sha256=-vmRV2irJ3B-qvSxP3TrbWWnRP44D_r5rRzO1s9_v44,873
|
|
98
|
-
autogen/agentchat/contrib/captainagent/tools/math/evaluate_expression.py,sha256=-aGQ5PhCKosldV0ocKlULnxW4ar6YZI-F4GsCDdLi3U,1051
|
|
99
|
-
autogen/agentchat/contrib/captainagent/tools/math/find_continuity_point.py,sha256=HoXMaaSu7D-rLP-wwE2Ci4ZYcyqFKYEJc4e5zSEmgXU,1277
|
|
100
|
-
autogen/agentchat/contrib/captainagent/tools/math/fraction_to_mixed_numbers.py,sha256=iTE65cODujSAQrj1W1fxz2N1zOfxsf5P0Rb38YE312Q,1659
|
|
101
|
-
autogen/agentchat/contrib/captainagent/tools/math/modular_inverse_sum.py,sha256=XEmQFbEkqljKGD5KGpoHTazJr3poFz6-ZFfBtYqzg3Y,769
|
|
102
|
-
autogen/agentchat/contrib/captainagent/tools/math/simplify_mixed_numbers.py,sha256=iqgpFJdyBHPPNCqkehSIbeuV8Rabr2eDMilT23Wx7PI,1687
|
|
103
|
-
autogen/agentchat/contrib/captainagent/tools/math/sum_of_digit_factorials.py,sha256=-6T5r6Er4mONPldRxv3F9tLoE7Og3qmeSeTC7Du_tTg,596
|
|
104
|
-
autogen/agentchat/contrib/captainagent/tools/math/sum_of_primes_below.py,sha256=Xig7K3A3DRnbv-UXfyo5bybGZUQYAQsltthfTYW5eV8,509
|
|
105
|
-
autogen/agentchat/contrib/graph_rag/__init__.py,sha256=hSAlgZLlKyTwTEIc4YNfay4uI909cNQluXO5DMHDVZE,421
|
|
106
|
-
autogen/agentchat/contrib/graph_rag/document.py,sha256=MNznM2xqIxdK9AdcXfOiNRsDSfoZmVEwiyaaTbrn_iU,755
|
|
107
|
-
autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py,sha256=omfwXxMabnH271y8CgnYPHfOEw8NdBIk9U5slj_AhII,7213
|
|
108
|
-
autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py,sha256=IQiOOW6JrdhXY-qSaGJhDJHdY4khnbBBJu9zNsdKRLM,4574
|
|
109
|
-
autogen/agentchat/contrib/graph_rag/graph_query_engine.py,sha256=HuH_CorqQYs0Yl8tuVPlrqnBYXqTyhCf4iyHaUuSThI,1876
|
|
110
|
-
autogen/agentchat/contrib/graph_rag/graph_rag_capability.py,sha256=4rDo097SGDqeQzzkCle2hq_nKHoesByQG85N0jh2zpM,2346
|
|
111
|
-
autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py,sha256=Js7gn38PuGyOVArhJGHzklEvCEoHntn1SF9coVVatK4,11180
|
|
112
|
-
autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py,sha256=FYOktwvAKdG_1YaoASsQTDJias7HdD5UWPGTTX_Oeqc,3564
|
|
113
|
-
autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py,sha256=B1Tu90Y2gmCKPuLnTzSqf8z3YOOzNJT7SEEGK19VDog,8692
|
|
114
|
-
autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py,sha256=FaK7PVYOBkWRW0G75qWdPSjuf3y8EZCPiKdzwynDhwM,4215
|
|
115
|
-
autogen/agentchat/contrib/rag/__init__.py,sha256=OfAsxrgpjj3eFaVXyo6oWyC05r9M0UCCkWjsERQbfRo,452
|
|
116
|
-
autogen/agentchat/contrib/rag/chromadb_query_engine.py,sha256=_0YwXUpDdKsErslfueNS_kzVT-Z3g7tpJuZojOnaF5Q,12590
|
|
117
|
-
autogen/agentchat/contrib/rag/llamaindex_query_engine.py,sha256=AAI8825gdJ60iby8zgeIO9U9xJpwfOl7Ppb5yiJyBEg,8649
|
|
118
|
-
autogen/agentchat/contrib/rag/mongodb_query_engine.py,sha256=Vy2SQuzvqIxcoRH-FW1XOWdSp3RiIqqBqOyKAbr17ko,15025
|
|
119
|
-
autogen/agentchat/contrib/rag/query_engine.py,sha256=GqEZxeNeUpoqGRbk0-mTaSXMb_b3yogsLkOVh_CWx5s,2529
|
|
120
|
-
autogen/agentchat/contrib/vectordb/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
121
|
-
autogen/agentchat/contrib/vectordb/base.py,sha256=w69_gXNpQ9CbjHZQtors7WbSJIsohnMmgMjXIWxmmfU,9310
|
|
122
|
-
autogen/agentchat/contrib/vectordb/chromadb.py,sha256=AC4OFZsdRSLXoOzstvO8s97iAHqrHKIlGSWv6NifuF0,13580
|
|
123
|
-
autogen/agentchat/contrib/vectordb/couchbase.py,sha256=8oraVI-qisrQP0N2ynvXR1F1poYj2YVcwXNAisay1iE,16989
|
|
124
|
-
autogen/agentchat/contrib/vectordb/mongodb.py,sha256=NjkXlZtUF0eUvii9eVj4io7cicp4AsTKOjtLDHCOZLA,23508
|
|
125
|
-
autogen/agentchat/contrib/vectordb/pgvectordb.py,sha256=vZrU84SA6giyscQFvw4Gxi3_qAi0yYYB347c__FLa90,39306
|
|
126
|
-
autogen/agentchat/contrib/vectordb/qdrant.py,sha256=LnJvtd5sF9uz7SWyKN65tjnknOV9rbms7A4OykcKOX4,13830
|
|
127
|
-
autogen/agentchat/contrib/vectordb/utils.py,sha256=oYdv8aopbG329mESAD2urt_eeTDHjyW5GroX0_d3chk,4490
|
|
128
|
-
autogen/agentchat/group/__init__.py,sha256=1ukpdiPxAWBhBOWxVjqULImgxuxrZ2SUqaE3EUZjMsI,1883
|
|
129
|
-
autogen/agentchat/group/available_condition.py,sha256=Sz4ZHGH0bFO8Z-SFbfe591LabvMHcxcqzA5pQaolyK4,3079
|
|
130
|
-
autogen/agentchat/group/context_condition.py,sha256=UwIOBqPzwi0emfkmseavTJJ6f0VA70dxuTld_FrewjY,2400
|
|
131
|
-
autogen/agentchat/group/context_expression.py,sha256=zFWPV3yfV-0ayYXfrhRq6iWQZnRTa8SKHonb-5D7gkM,9890
|
|
132
|
-
autogen/agentchat/group/context_str.py,sha256=EHjpDr8MLMl5AMXktMi9Wp4BIL_1hbIeJPMEXlLkTjs,1270
|
|
133
|
-
autogen/agentchat/group/context_variables.py,sha256=d2Q31aoV2o_5QSd3Oh1fYDIV0fDaaHOOsjNQ92TC_H0,5649
|
|
134
|
-
autogen/agentchat/group/group_tool_executor.py,sha256=lCUg0Z_R8u0mRsWE350p6pGNj-6fJUMGqWqs3xmznCQ,9104
|
|
135
|
-
autogen/agentchat/group/group_utils.py,sha256=nNHtAAS2tAvaA3VsXPYDBIV6vBve8PoVvYMs0Ps7GzI,27586
|
|
136
|
-
autogen/agentchat/group/guardrails.py,sha256=OMqQgXtscfYHS6ET1x2HT6Cpi2gtnkEbNKQgWqnZtDw,5964
|
|
137
|
-
autogen/agentchat/group/handoffs.py,sha256=ergiOsXC4z8N44LTUh-abIPrErjkXZWFRMXflinNq1Y,11743
|
|
138
|
-
autogen/agentchat/group/llm_condition.py,sha256=wfuEET1VhyVVGedYxcyuhX_Vus6uZHxUl_SPpu4YIsc,2951
|
|
139
|
-
autogen/agentchat/group/multi_agent_chat.py,sha256=oKAWiziaSZ0otwfGhSWaR26dYbfRQj_vau_P5Z1dvfY,7688
|
|
140
|
-
autogen/agentchat/group/on_condition.py,sha256=ZxLiI4APceCGUcPFnLrsik7DEX9YgRW200k1QIhyaWg,2185
|
|
141
|
-
autogen/agentchat/group/on_context_condition.py,sha256=GwB2qb2V7RbaOJPeXYXinuxDQ8ou0kvp7-9jZ85KFfk,2084
|
|
142
|
-
autogen/agentchat/group/reply_result.py,sha256=KUJ2HWpRLEyc5SIVh60-GirsN7jFg-ceAeT4p7I0ZyQ,740
|
|
143
|
-
autogen/agentchat/group/speaker_selection_result.py,sha256=2pvl-9zJ1al0AbAmLDqGRm9JgfmS-lyEOFiZoKIkUHY,1623
|
|
144
|
-
autogen/agentchat/group/patterns/__init__.py,sha256=SUw-biSWow_uGHuHcMA3Pu2cq_CTTVeIqY2J8A5fq8A,446
|
|
145
|
-
autogen/agentchat/group/patterns/auto.py,sha256=h0LjzGHv3yRqDCAnlOfjofkYNKiVzSKVc64T_o8e7wY,6075
|
|
146
|
-
autogen/agentchat/group/patterns/manual.py,sha256=8ltqGFtt9xfyADl_OZFD0g-HydFQvDdrc35iwT612ok,6324
|
|
147
|
-
autogen/agentchat/group/patterns/pattern.py,sha256=8DS9lMloLPemY10aIqTnttuRTd50YPN2-UFCj7wjhBk,10868
|
|
148
|
-
autogen/agentchat/group/patterns/random.py,sha256=yrNCYwcodhdcquNEkdaWO_T32jJjiqaslLithAX1dSM,3367
|
|
149
|
-
autogen/agentchat/group/patterns/round_robin.py,sha256=nS7nsQJKCq9lD0wyCx__gkWK3N9Z8bvlY2stUfE9JxA,3895
|
|
150
|
-
autogen/agentchat/group/targets/__init__.py,sha256=AJNSbl9iMe2hiDmZojTp8h889o5OYN3V7f2_2nr8px4,145
|
|
151
|
-
autogen/agentchat/group/targets/group_chat_target.py,sha256=4_bzVg1ODSIx7UfP8O9OdvTlRNtFuqZt77YqKFIwh74,5364
|
|
152
|
-
autogen/agentchat/group/targets/group_manager_target.py,sha256=Cp4Wbmp3a7fZBTN-s5eQEDRNyKWq9KYihRlzx1blnZQ,6276
|
|
153
|
-
autogen/agentchat/group/targets/transition_target.py,sha256=punRNX630N4HQrMmpVAeSCkdHDEd3CG51KHwlUM3JLo,16742
|
|
154
|
-
autogen/agentchat/group/targets/transition_utils.py,sha256=fzRnaJtUEnNswkmamQH08X43xX2kV0SWGIWEV72TtIo,219
|
|
155
|
-
autogen/agentchat/realtime/__init__.py,sha256=c8B9TpO07x9neD0zsJWj6AaEdlcP-WvxrvVOGWLtamk,143
|
|
156
|
-
autogen/agentchat/realtime/experimental/__init__.py,sha256=leYemaQJXulYnp5atRJZE247EL5VJtdDoF_p1XJFQzM,619
|
|
157
|
-
autogen/agentchat/realtime/experimental/audio_observer.py,sha256=ayx96nB1iuUVu3E-AIBunPu7iUf3r-0GCrwKAnRtRw4,1312
|
|
158
|
-
autogen/agentchat/realtime/experimental/function_observer.py,sha256=M0cXXJNoBQ8sAZGiju3emG5PaohszEq_h8bNDXLBrAc,3172
|
|
159
|
-
autogen/agentchat/realtime/experimental/realtime_agent.py,sha256=i8rxU-Tjk2Pz-WOZJ5PuRymaMvVLH66lqH2LJ85PxLM,5713
|
|
160
|
-
autogen/agentchat/realtime/experimental/realtime_events.py,sha256=zmRr3pwPJpme5VZEADIz5vg9IZoT3Z1NAc3vt1RdWLk,1083
|
|
161
|
-
autogen/agentchat/realtime/experimental/realtime_observer.py,sha256=nTouVj5-il0q2_P2LTpyb4pnHqyfwP5MJh_QmMJF3e8,3061
|
|
162
|
-
autogen/agentchat/realtime/experimental/realtime_swarm.py,sha256=sy7Vwt7Ztuu4LMnZQ_RjASY0KWUNARJev41INXqY7pc,17880
|
|
163
|
-
autogen/agentchat/realtime/experimental/websockets.py,sha256=bj9b5eq80L3KlGWPP6nn7uyfT_Z47kQqtIRbQkeE5SI,667
|
|
164
|
-
autogen/agentchat/realtime/experimental/audio_adapters/__init__.py,sha256=rd0pEy91LYq0JMvIk8Fv7ZKIQLK7oZbVdgVAwNZDCmQ,315
|
|
165
|
-
autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py,sha256=-O10rpqPKZKxZO58rQOxPnwECe-RQJoSUTU_K8i0A98,6110
|
|
166
|
-
autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py,sha256=an1LFhCyfQGWpJL2_hlHf6qc-ovS5WNBbmFzCl80y6g,5935
|
|
167
|
-
autogen/agentchat/realtime/experimental/clients/__init__.py,sha256=mLQaJUrmJ2PNlFPMf02F5HRsuEP-DV_-5vQPLaNgRnQ,443
|
|
168
|
-
autogen/agentchat/realtime/experimental/clients/realtime_client.py,sha256=BltMkD56-tsp3Tj1Gm4gPLjONWT-21v9s-NMBUjvXoI,6105
|
|
169
|
-
autogen/agentchat/realtime/experimental/clients/gemini/__init__.py,sha256=OsuUiSPrD_-y67rL1wYsPHd0YUnvrGJ7TX_GUZZDB1A,221
|
|
170
|
-
autogen/agentchat/realtime/experimental/clients/gemini/client.py,sha256=VhEgws0mq0sbcjnivMdSU5YTaHHBYxS7_7chA7m34GA,10206
|
|
171
|
-
autogen/agentchat/realtime/experimental/clients/oai/__init__.py,sha256=NMVpiwIA3mcC2l69GSivt2MW4lFJeTaAGyEbhhNgpNs,307
|
|
172
|
-
autogen/agentchat/realtime/experimental/clients/oai/base_client.py,sha256=c8AgqAkbaSHZyBW0VHH5NQNZ58IqURMrJfUZsczwgrI,8469
|
|
173
|
-
autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py,sha256=lvvXNdrdc99FoDfQTMd3MFQ8dsCD0Ade90ut5oDYkjU,9578
|
|
174
|
-
autogen/agentchat/realtime/experimental/clients/oai/utils.py,sha256=_6PsHZNBZXLM_GWadOwNvjjBsz4is0Np45AnySAkzy0,1604
|
|
175
|
-
autogen/agentchat/realtime_agent/__init__.py,sha256=Jr5mEWi_yCGfLxhxRi7RrcLzPIvTqDz3w5w7QWozCl4,479
|
|
176
|
-
autogen/agents/__init__.py,sha256=c8B9TpO07x9neD0zsJWj6AaEdlcP-WvxrvVOGWLtamk,143
|
|
177
|
-
autogen/agents/contrib/__init__.py,sha256=t0jzf-1c9vY5T5MHGgdHKECtacrmmzVFg1Oe-C_-QVI,250
|
|
178
|
-
autogen/agents/contrib/time/__init__.py,sha256=cvJIRqbF6x-ZszrPDOzUJI30BOcEWPrmOyBQvHvWrc0,279
|
|
179
|
-
autogen/agents/contrib/time/time_reply_agent.py,sha256=bBEWcUaD0rFdvFCTdq6ax0Pbd89jWvacnqpdmk9Daws,3169
|
|
180
|
-
autogen/agents/contrib/time/time_tool_agent.py,sha256=xwYF-0Hd6X111y3R8UUu8U5HVtVt3zgmPf8HYqc88Do,2132
|
|
181
|
-
autogen/agents/experimental/__init__.py,sha256=SSqBqSHvUE52HXhtLThTWo4TPeQDHlw9bD--iampi4o,805
|
|
182
|
-
autogen/agents/experimental/deep_research/__init__.py,sha256=sEo1hXnAVyRQFzdfCfNPyQpwuMjxO06XgFXfRqymFhE,222
|
|
183
|
-
autogen/agents/experimental/deep_research/deep_research.py,sha256=_6ULJB-J17WJjgmEuDQA_gN5nFqXviZahuYbDr1AEgk,1773
|
|
184
|
-
autogen/agents/experimental/discord/__init__.py,sha256=u9uCviCbFRJ6xp87RI3WamDFNwUwGIHSnG9J39ioQ5c,206
|
|
185
|
-
autogen/agents/experimental/discord/discord.py,sha256=S5OkCgXJj2AnkEXZ3Z-pRG3_iDG73WLRLbUMlUZmu44,2705
|
|
186
|
-
autogen/agents/experimental/document_agent/__init__.py,sha256=YNuO2YqxckrfAxcmRcI5JmiE7w52lkyVdLyvWxmbSUw,603
|
|
187
|
-
autogen/agents/experimental/document_agent/chroma_query_engine.py,sha256=izKOopdDpmMfoAOCChR3evlLgJZkMh-x4XvsxiO9ol4,13864
|
|
188
|
-
autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py,sha256=3QBqyZxtQCidxEdwwEHE0WRMgW1Q1nnFZnm9Z3ahwZI,5060
|
|
189
|
-
autogen/agents/experimental/document_agent/document_agent.py,sha256=3QVW_Gt9IMFmXKtw9oWzUroa0N_lK9S3Ry4lnMzugkA,29628
|
|
190
|
-
autogen/agents/experimental/document_agent/document_conditions.py,sha256=yahgDlnG6ORw9RQ6GLLrn_ZczHv9XrLcdouo6M9rSZQ,2051
|
|
191
|
-
autogen/agents/experimental/document_agent/document_utils.py,sha256=g8PBcOFbVWtqP6rnRHJtY97ZJDXADcPzylkKZnhJfNA,14088
|
|
192
|
-
autogen/agents/experimental/document_agent/inmemory_query_engine.py,sha256=UFv0u2V0QG3mne9BuQksWggEjGSmO4em4VGkU1Zm2to,8966
|
|
193
|
-
autogen/agents/experimental/document_agent/parser_utils.py,sha256=U_K9DhpWGSZa1SAKcFzUZuPptDqqj3WMHzsAlKsed_4,5399
|
|
194
|
-
autogen/agents/experimental/document_agent/url_utils.py,sha256=88SBeNdvn5DZSI8DhbAmurQK6kuprTHEcyPYy-zS2Q4,15873
|
|
195
|
-
autogen/agents/experimental/reasoning/__init__.py,sha256=7sNWA9-cLr4F5NgS_0ykhAShA-YYwtbh0uJiPXPHJBM,242
|
|
196
|
-
autogen/agents/experimental/reasoning/reasoning_agent.py,sha256=3LoGs_Jt-i0HulW7TfEAmuXcL09HSlkzT-2YX4bLssQ,51123
|
|
197
|
-
autogen/agents/experimental/slack/__init__.py,sha256=PHPU684QTDEgiZZYA6v7Immgr9gaN4rfNN4W12DZ1pY,200
|
|
198
|
-
autogen/agents/experimental/slack/slack.py,sha256=QzT0awsZpAVCs5mmXeHT-V6uhKik8nCnoI-Eo2xrnrA,3103
|
|
199
|
-
autogen/agents/experimental/telegram/__init__.py,sha256=Y-HQJXmeux9QVY-Jjy22WO8cPWryxwaKEbhcypdUImY,209
|
|
200
|
-
autogen/agents/experimental/telegram/telegram.py,sha256=q-1i1xPVYxOUjABUvKRo5B9sPvF3p2bAQLQi9POndMM,3097
|
|
201
|
-
autogen/agents/experimental/websurfer/__init__.py,sha256=I3D0sIBDW9zxSOM0wNXdFfMZQIpiutet-9ikrm0WD0s,212
|
|
202
|
-
autogen/agents/experimental/websurfer/websurfer.py,sha256=MT6VIXmPscjY8LdweXL_txTNsNkpHtwSqR_475QYMeM,2908
|
|
203
|
-
autogen/agents/experimental/wikipedia/__init__.py,sha256=ytX_85hqagdyl3I72kYQM2-3bR7rG_SI5cyx8pKSG2I,212
|
|
204
|
-
autogen/agents/experimental/wikipedia/wikipedia.py,sha256=51fjVlmNDZfq3JrGIkknPXz41y_VJcMXfHNnnW58L0s,3942
|
|
205
|
-
autogen/cache/__init__.py,sha256=HF7qJyJpzqTYXSwUyVUxAFTY0eakw5OFwhyg_KO3QwE,375
|
|
206
|
-
autogen/cache/abstract_cache_base.py,sha256=RYYgxtKIGfgSbt0svm2wCN4S-LMwzSSccXEc1taBgTg,2442
|
|
207
|
-
autogen/cache/cache.py,sha256=zhaKr5JRTuxGLycN2nBI6CHBaXDosiq4RUWMiAJ32_U,7574
|
|
208
|
-
autogen/cache/cache_factory.py,sha256=JHiVGjNyf4sPwPZhJN-IcCwyWpC7smzWk3COnaTO6_A,3261
|
|
209
|
-
autogen/cache/cosmos_db_cache.py,sha256=alAXpn1RMmUMmekJAV-xaePOEoqqkXy48y9FYYVklVE,5743
|
|
210
|
-
autogen/cache/disk_cache.py,sha256=d6CVKboZLPDEM1QhAqCPzpPXlvaByLE4o4hxEIkVeU8,3331
|
|
211
|
-
autogen/cache/in_memory_cache.py,sha256=qeECs4UnN5FzuCSgiF-Ma11eLGSjJBgGlqLraWhDYDE,1852
|
|
212
|
-
autogen/cache/redis_cache.py,sha256=XqUVObZRbD_kDL5vDD6H6xu_U-xcL8qKmsUq2Ix8xVo,4248
|
|
213
|
-
autogen/coding/__init__.py,sha256=fN8UCm3RzJZ4OFMwlp3a0jic0ZzOege6TNVAk5t6J0U,825
|
|
214
|
-
autogen/coding/base.py,sha256=hj70EwB-b0MVzHXACw-Oj3CiHo-GUC5kGZGniDTMOnw,3801
|
|
215
|
-
autogen/coding/docker_commandline_code_executor.py,sha256=8sr6bBpk1JtWEb1YQNgmj5z_n2mL_-cAP3EzSrn6SLU,10872
|
|
216
|
-
autogen/coding/factory.py,sha256=bC3kkIBNExAPt8KZvCQ1PsLpyJWLq1jpw1JcvIbKR04,1978
|
|
217
|
-
autogen/coding/func_with_reqs.py,sha256=dPcjRs4gOjoVO3m5cQYWtFm7FKO94gBYPwr3O7gVj7g,6372
|
|
218
|
-
autogen/coding/local_commandline_code_executor.py,sha256=XKkT141IYZf_HngNJjMcJ7uZXe3k056wMdXZC2hfAts,16671
|
|
219
|
-
autogen/coding/markdown_code_extractor.py,sha256=Hp07a4UIGW85L0oJvP5q2H_98yo0ssQb7k2lPoDu9hY,1650
|
|
220
|
-
autogen/coding/utils.py,sha256=I69g8TrhdXanzRD8DFRq0tuGV7XzIfDh8zkgygkCR6E,2098
|
|
221
|
-
autogen/coding/jupyter/__init__.py,sha256=HsXcVgN_gS2CO0XzeKidjxpipCgV8Dt0zXpK7Q4lArs,830
|
|
222
|
-
autogen/coding/jupyter/base.py,sha256=kZtlulUt655i8Q428zNUN-e4cPsdae3yQn2uEJA01rc,1149
|
|
223
|
-
autogen/coding/jupyter/docker_jupyter_server.py,sha256=YOfF1r2WltV7Yb2akeUOljdEzoMIbQE2mN_CP1H59KE,5872
|
|
224
|
-
autogen/coding/jupyter/embedded_ipython_code_executor.py,sha256=qaMpoRzUTxMocL9riooItgosw80AMpyCzSzybyfTbBU,8116
|
|
225
|
-
autogen/coding/jupyter/import_utils.py,sha256=7yzEAYmNmJsODsqz3XCNOORKfvp0t6xnafOO4KJKm90,2633
|
|
226
|
-
autogen/coding/jupyter/jupyter_client.py,sha256=ROXAWOKG_EJ_oFNuyqUd_3uOBPUTRoTh6_-8bSpXBdU,8674
|
|
227
|
-
autogen/coding/jupyter/jupyter_code_executor.py,sha256=Z2vZvou6QzpMBg0IgOzVRoCADswd15mvfkktIjGhUMY,6374
|
|
228
|
-
autogen/coding/jupyter/local_jupyter_server.py,sha256=7b8yi5qK8ms2e5-PRCrzmXKGp1iC5KgpMU8xiqQ9u8o,6589
|
|
229
|
-
autogen/environments/__init__.py,sha256=SNh4NFcBgySNW--H1YUZPEf7F7QLpBQA3Qc8EvyM-gk,488
|
|
230
|
-
autogen/environments/docker_python_environment.py,sha256=oKdtr2IN2UDoYi8V_Qjvut5VGfwUNzNoj8J1aMRP9GU,15312
|
|
231
|
-
autogen/environments/python_environment.py,sha256=CXY0h3SWJPYSZtcR_nqY5VmVvGItIJwAnBqSx7YvECg,4265
|
|
232
|
-
autogen/environments/system_python_environment.py,sha256=jk1U4CSDPsF1igqdv-GQOKsH_NTxitRzN35-UWng2e8,3081
|
|
233
|
-
autogen/environments/venv_python_environment.py,sha256=i7dgd8lFuxfZwkysnFXuOn_B26CFYCzNHHBfCtExLkk,10076
|
|
234
|
-
autogen/environments/working_directory.py,sha256=MevUpN1lzmJLEKM_o9JHZod9cy9pQgI5AsE0ic6fvrE,2505
|
|
235
|
-
autogen/events/__init__.py,sha256=XwCA6Rsq9AyjgeecGuiwHcAvDQMmKXgGomw5iLDIU5Q,358
|
|
236
|
-
autogen/events/agent_events.py,sha256=LSCOMwA-nlBSboE5jOh-Da2Pm7hghiwjfzYTz_bS30k,31112
|
|
237
|
-
autogen/events/base_event.py,sha256=5K1wzDBAio9wLxahErSvE0-UbFfMuSTxBp6EI8SbPGU,3475
|
|
238
|
-
autogen/events/client_events.py,sha256=2skE5f9BxQmwJv22vNe-s1ReDXE-DsadeAmMWlrmltc,5466
|
|
239
|
-
autogen/events/helpers.py,sha256=JNwnEfaFylWEaQivURXQ5_7DjsjmCZyiWRI4mQH0ueY,1528
|
|
240
|
-
autogen/events/print_event.py,sha256=_B_60nnB0yFwWpv-LT2c-Zp_b-moREtafP4lDI8uJzk,1275
|
|
241
|
-
autogen/extensions/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
242
|
-
autogen/fast_depends/__init__.py,sha256=4KNQsBQmoDf5RIZsnOuMFy7t6-Y1hnKjIplGdbo_k8Y,465
|
|
243
|
-
autogen/fast_depends/_compat.py,sha256=-VucEHRxqqnNETPQV7Q24eouQKQVUxuc0ixRH8CSV14,2797
|
|
244
|
-
autogen/fast_depends/py.typed,sha256=T2j_zfU4zutMBbYt-DnEWSdP7XjLdaS9Tqt5z8VXUgg,288
|
|
245
|
-
autogen/fast_depends/schema.py,sha256=Dy_HmI69_BAWQY_CoqbG7Dp7GIUasIqW34LHT_5WH4s,1939
|
|
246
|
-
autogen/fast_depends/use.py,sha256=VZ02OiSp1puD_7ML5-wQA1S2FL4dE4XfKkZKKF2yndc,7894
|
|
247
|
-
autogen/fast_depends/utils.py,sha256=bVNgAdaNd4UES09tu47muDW-hVBnXIaavVPdxIrqdd8,5282
|
|
248
|
-
autogen/fast_depends/core/__init__.py,sha256=qegYjQCufCOBWZT210C9xXtjmkdiWluVjSF3q26sdSg,410
|
|
249
|
-
autogen/fast_depends/core/build.py,sha256=Q92noDthNoRvoj-SRngTgozyg3EdTy-lQwYxUSDy-kE,7198
|
|
250
|
-
autogen/fast_depends/core/model.py,sha256=6cR8KiRD5S0v2ojhTeW4P4Gfg9gvE7SSCriTfQbJJ9I,16941
|
|
251
|
-
autogen/fast_depends/dependencies/__init__.py,sha256=qoiZscVbv-YWci0ZHjhIA3mAnP5AKCwtnQU-r5AY3LY,441
|
|
252
|
-
autogen/fast_depends/dependencies/model.py,sha256=caWUndsiiu0kiNfeaOvZcmo7OKKahPqn1gyO9VzH6hw,866
|
|
253
|
-
autogen/fast_depends/dependencies/provider.py,sha256=_nCoArOa6yUrAdcYp1bkCK1k770GkBvInDdxZhWn9Hg,1094
|
|
254
|
-
autogen/fast_depends/library/__init__.py,sha256=N4Qse-hGFWumWIowm4N0omd3Qqa15GmP5dzav9oKwNc,348
|
|
255
|
-
autogen/fast_depends/library/model.py,sha256=0WBUzYLGwni-QKQOcnqPQIUG2m60qAUuhG66tKCOlTo,1221
|
|
256
|
-
autogen/interop/__init__.py,sha256=c80dCkG4qyQFk-sE_gxVrxNNoVnbzxmglg7-t3Ut_fU,750
|
|
257
|
-
autogen/interop/interoperability.py,sha256=w7j3fKJZB9kQdIjIJnywe1pvtbdXNz1of9RY2Ny8ECQ,2578
|
|
258
|
-
autogen/interop/interoperable.py,sha256=Im3GgzxUhNOmi4j5MTLYkrUBcaEBvwe6cRI563SPd8I,1486
|
|
259
|
-
autogen/interop/registry.py,sha256=8CFmL7OdYBsajJ7OvOdFTKUwAjUkqKSZOnWJwif0txA,2122
|
|
260
|
-
autogen/interop/crewai/__init__.py,sha256=goeDZTI1PlxNwsLfZWvJMYSUjmsMaJwAPTI6gAHmuyk,225
|
|
261
|
-
autogen/interop/crewai/crewai.py,sha256=CwLjKntWdLCzT22teUxl1ndAdwZIbJ-Y0d97OApIgmE,3243
|
|
262
|
-
autogen/interop/langchain/__init__.py,sha256=8v-kdg4ImQ1Udzd8Y6r7DTvd760SgWkwNKz6NmII41U,336
|
|
263
|
-
autogen/interop/langchain/langchain_chat_model_factory.py,sha256=Jv6Q-SFcaAk9e20fBu92ZZgEEShnUJDqbP5XTZravhE,5591
|
|
264
|
-
autogen/interop/langchain/langchain_tool.py,sha256=2njJVv17ApNiei-ZJvpZhKFderwQIpmOAxNzx_jQmFM,3132
|
|
265
|
-
autogen/interop/litellm/__init__.py,sha256=0K9NkQEBXKZI6UVNwD4daTumQL-uhMrAJE33wiSYmkI,237
|
|
266
|
-
autogen/interop/litellm/litellm_config_factory.py,sha256=NiyU0fCCMu5uerirGLu2MR45x_xvAFIVFEJaG5bw4mY,6289
|
|
267
|
-
autogen/interop/pydantic_ai/__init__.py,sha256=w9tqh96x43Ipq2loD_F-kqwws2RFRs7-98mPxWG-Mjc,238
|
|
268
|
-
autogen/interop/pydantic_ai/pydantic_ai.py,sha256=ux0V3J37rrT80FCYwkEui3UjsMwUyLd1yfUOidVa4ks,6680
|
|
269
|
-
autogen/io/__init__.py,sha256=c5iZkM24B9j3K0yPQ0HYJnvAdNMqhlRZVXqcfdnGFX4,600
|
|
270
|
-
autogen/io/base.py,sha256=ThjSXVHhZtSiI-7acRre5XFlBKgMvUyucmDiGNyGAAA,4737
|
|
271
|
-
autogen/io/console.py,sha256=6dYGWntAMgbVX2An14pcs5YyusFsUGeF_-tgR5IMOC0,1892
|
|
272
|
-
autogen/io/run_response.py,sha256=7-3QsrHSV7T3HZeDDuUAYldpZJ2Cit2BJJRp9KHvn0M,9725
|
|
273
|
-
autogen/io/thread_io_stream.py,sha256=iSYyImEOtUHACpRIt561Xu6UL5isUkBL8YUG49QPlYQ,2307
|
|
274
|
-
autogen/io/websockets.py,sha256=Nsx7w9xFZjR2jtB-gfJTQUGBvmZpTLwOQPpdTmn-USU,7474
|
|
275
|
-
autogen/io/processors/__init__.py,sha256=8-znkWyHiESpMktD4cU_id-HPLE7JD7gArj0y-7K7dM,443
|
|
276
|
-
autogen/io/processors/base.py,sha256=60oltHFRWIjZsxzzzK5evPx1M-H0lHZVNVkmItiTNSQ,685
|
|
277
|
-
autogen/io/processors/console_event_processor.py,sha256=Z9xs4Qiq49Cxj1YbPPlrCgZ8KExQE3xqat7heLlZUOk,2103
|
|
278
|
-
autogen/logger/__init__.py,sha256=TTBS92VspksnTQzlMQcCBd-NzYc5UQ1DCrzO4aNvwO4,442
|
|
279
|
-
autogen/logger/base_logger.py,sha256=nMR6IqELN8b-TzqL0-pJyJ6CpIejjp45IYh5tsMQHAE,5040
|
|
280
|
-
autogen/logger/file_logger.py,sha256=EbjDhvPUSP2JX-xAZRplc8JRm6au8ofcjHz-KfXboh4,9796
|
|
281
|
-
autogen/logger/logger_factory.py,sha256=CeLbW3gN0J5zgvQSsRLCSnaiMYusrDWLWovo_Bk-mK8,1391
|
|
282
|
-
autogen/logger/logger_utils.py,sha256=H9hcsRyEcUcfxTYWf5cRjtNghF4h3FT8sr4IIuqQumY,2053
|
|
283
|
-
autogen/logger/sqlite_logger.py,sha256=sRwMx42zh85QWLz1BqKyVySI8OwEB_NjM3ObLOW-mcI,18685
|
|
284
|
-
autogen/mcp/__init__.py,sha256=6BDDmw0sjLZRjyHnd-Gfh9BE-pTKTv5bkow9W6odHtQ,213
|
|
285
|
-
autogen/mcp/__main__.py,sha256=C7nXbWxG3yGsWKRgFnhSsbQOmshLnz6ZOcCxK2TWWio,2487
|
|
286
|
-
autogen/mcp/helpers.py,sha256=J5_J6n3jMJUEJH5K8k9BeUb6ymQgRUI0hC1gbY7rlwM,1533
|
|
287
|
-
autogen/mcp/mcp_client.py,sha256=7c_lHgBJEs77TFYjLcTlVrEu_0z4EafPPY3PgteY87c,7400
|
|
288
|
-
autogen/mcp/mcp_proxy/__init__.py,sha256=3HTU-TqHLk4XSXeBV1UFd9XkQ1B0yOuXXyGseXvDVec,518
|
|
289
|
-
autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py,sha256=dx-w2tGVMnh8pzY2NuXlMD7oIF7_5Gvc5oSbHIySEpc,2110
|
|
290
|
-
autogen/mcp/mcp_proxy/mcp_proxy.py,sha256=1eWwZatPgPxqkhcbEFCW-ErmkrWUF9F_cLkFWVtLkug,22171
|
|
291
|
-
autogen/mcp/mcp_proxy/operation_grouping.py,sha256=1n4o5qhkQd2hVr7OaOMsRhInDveDGkCozLudsBVusC4,6349
|
|
292
|
-
autogen/mcp/mcp_proxy/operation_renaming.py,sha256=G5J4VdxUAwSvOo-DsqIUbCfV9TnH3riaHLI6IpctDF8,3956
|
|
293
|
-
autogen/mcp/mcp_proxy/patch_fastapi_code_generator.py,sha256=vBr8P890nsFvK4iuFicrdNskooHlBQeTQ6jbb5kcPAk,3490
|
|
294
|
-
autogen/mcp/mcp_proxy/security.py,sha256=HUcdIE1CCmvuWBPUlvjoKOJV-05sve6pcKHalgm9Z8E,13611
|
|
295
|
-
autogen/mcp/mcp_proxy/security_schema_visitor.py,sha256=UafLMd5zcz0COcc5Vfvt6bP3LQ3jmaBwQIlWhovN9H4,1345
|
|
296
|
-
autogen/messages/__init__.py,sha256=ZuLvvIQRkNE5fotPe6MSS_YzOUkmfIqGSfOZZOZQ3go,321
|
|
297
|
-
autogen/messages/agent_messages.py,sha256=gzsJdzk2slAfSn8ZcXNW6hPegrYPNIEphdhHaqP19Zg,30451
|
|
298
|
-
autogen/messages/base_message.py,sha256=MbYEXM0dWHl31y7o08PGeJNcpK67hpoQpUMgnZ8qTGE,3808
|
|
299
|
-
autogen/messages/client_messages.py,sha256=9yVn4zug44sLIZQFKiCjOK2ML7uFAADflmGudgPV850,5653
|
|
300
|
-
autogen/messages/print_message.py,sha256=51UpH-rkLrRxz_QxAhEMdjVAipiwkLirOuGtkuTvQL4,1393
|
|
301
|
-
autogen/oai/__init__.py,sha256=BIwnV6wtHmKgIM4IUdymfPfpdNqos5P7BfRv-7_QL9A,1680
|
|
302
|
-
autogen/oai/anthropic.py,sha256=AK_Bbcc5I-PqAvoiwB0LaO1ZLugh_wQNAOIFcj7eTtk,29174
|
|
303
|
-
autogen/oai/bedrock.py,sha256=8AYWZVsDkJS2HmQ0ggoUqlKV_a4H_ON8rks4VW2Jrxk,25719
|
|
304
|
-
autogen/oai/cerebras.py,sha256=8hiSBq88l2yTXUJPV7AvGXRCtwvW0Y9hIYUnYK2S2os,12462
|
|
305
|
-
autogen/oai/client.py,sha256=ZJfax-XdV92xfmIvn-qmJhSwjP-MusU4oDc9_88o-1k,68206
|
|
306
|
-
autogen/oai/client_utils.py,sha256=lVbHyff7OnpdM-tXskC23xLdFccj2AalTdWA4DxzxS4,7543
|
|
307
|
-
autogen/oai/cohere.py,sha256=pRcQWjbzKbZ1RfC1vk9WGjgndwjHbIaOVoKEYdV2L6c,19421
|
|
308
|
-
autogen/oai/gemini.py,sha256=bc_RQwtoGi7DnwQwPie7ZdvsqpD1AjYwzjVwnIKP39U,43168
|
|
309
|
-
autogen/oai/gemini_types.py,sha256=i4wT8ytD2cO9nCUWm2FKLKVVxyd31wMhOpnrvnIiKIc,5888
|
|
310
|
-
autogen/oai/groq.py,sha256=pQWtaAY_AjT30XKbZNHXDzWsawBys3yFWlfy6K4Nqr8,12431
|
|
311
|
-
autogen/oai/mistral.py,sha256=SlOYPdnNLHuTEHBGCzsemG9sLEgphdUukRurERdMsvI,12677
|
|
312
|
-
autogen/oai/ollama.py,sha256=t0fIgDCoIfsQZ3hhpseam5N-fbpI7-fw82bG55mA8nU,29103
|
|
313
|
-
autogen/oai/openai_responses.py,sha256=W847OTGzlDbII8sYWIXTOc9NEPAM59XmLWvcYbC6bRo,17811
|
|
314
|
-
autogen/oai/openai_utils.py,sha256=4kEu50WeTGGG2uh1fOeMxRIZkEoov-YkkTgx2n5DhkM,38131
|
|
315
|
-
autogen/oai/together.py,sha256=Sj4LOk9RrBG3Bb5IVsrjBYz-hDECCyCgofsCdtk6PSM,14867
|
|
316
|
-
autogen/oai/oai_models/__init__.py,sha256=cILDaaCCvSC3aAX85iLwE1RCpNEokA9925Zse5hX2K4,549
|
|
317
|
-
autogen/oai/oai_models/_models.py,sha256=jr5nlvk7Be4W7wDVnwyjDL6m2CSj0RY1nOL1W3Kq0xI,478
|
|
318
|
-
autogen/oai/oai_models/chat_completion.py,sha256=xs6OH9bWDzN5YQjDRmbJSPr19zySRwJOmyPtJJiNC-M,3188
|
|
319
|
-
autogen/oai/oai_models/chat_completion_audio.py,sha256=a55i5E1EnT8qWdiKxbwF2kmgt4fih6x6HaChjs0ZuZE,950
|
|
320
|
-
autogen/oai/oai_models/chat_completion_message.py,sha256=6MbrdgmqoAz0dUuyZZtM4NQd80ljVm3zDpP9_-l5zyw,2808
|
|
321
|
-
autogen/oai/oai_models/chat_completion_message_tool_call.py,sha256=CWuqlwrk8VMSevpOZAMMPyw9KzNVnxEOfYs9y5tN5zw,1206
|
|
322
|
-
autogen/oai/oai_models/chat_completion_token_logprob.py,sha256=GXpNAj2hPKimAW9E00CT2p91xkTqK0XGS63MZ2mYEFo,2071
|
|
323
|
-
autogen/oai/oai_models/completion_usage.py,sha256=WAuvTPlONP3wN1iiWXztp7Zv6e6-ba8ljhBWVy9KIwM,2020
|
|
324
|
-
autogen/tools/__init__.py,sha256=guevGJut7uN2pGpPn9mODaVsTSfeHrGpjjjIEWRBqVo,554
|
|
325
|
-
autogen/tools/dependency_injection.py,sha256=UaLO9QdaVxPLjbKa5ZRuizPagMfg91pa7ohc54mUkDU,8468
|
|
326
|
-
autogen/tools/function_utils.py,sha256=J-3u-Ao_kK7PxqiJMea2P-HGfSTeJTXlWTFSI19IndM,13756
|
|
327
|
-
autogen/tools/tool.py,sha256=1VM5wkPaWrsndCEEYAuFODby0du3raRWCBAGO-kR2xo,7243
|
|
328
|
-
autogen/tools/toolkit.py,sha256=1tOmTGJ96RhkJrrtAViKUyEcwacA6ztoIbYbnf8NgTU,2558
|
|
329
|
-
autogen/tools/contrib/__init__.py,sha256=DWEjPK6xCR2ihAXXdquQZmiuqRLA3Pqb8QV8W1RtS3k,202
|
|
330
|
-
autogen/tools/contrib/time/__init__.py,sha256=dplie5aBJZ8VoKy6EKcQMLTtSgcCkNDYzpdsC2I0YWk,195
|
|
331
|
-
autogen/tools/contrib/time/time.py,sha256=tPi49vOUwfvujbYA-zS00CWcLW-y18CPyQ1gnJG6iRg,1271
|
|
332
|
-
autogen/tools/experimental/__init__.py,sha256=OPJlrK_tJCPbeBT-qsIWwJBdLuaCMskpshduA8Haj7E,1671
|
|
333
|
-
autogen/tools/experimental/browser_use/__init__.py,sha256=kfxCajXcVMDH6CZq-lWh2p8PKxOwT9yjC_Za0jr4zUg,290
|
|
334
|
-
autogen/tools/experimental/browser_use/browser_use.py,sha256=KfU4MI_BWaHepv0bDMf9HTDUaHTJThuBJI8R_BPpjmg,5561
|
|
335
|
-
autogen/tools/experimental/code_execution/__init__.py,sha256=KFUku2awEgsnkSa48t2iMMPC-QCxpqAG7lb8fB4Fr-c,242
|
|
336
|
-
autogen/tools/experimental/code_execution/python_code_execution.py,sha256=Fj1Wxsn6z0HuXWpqa-ahedkCtyPYBShUnbiyvSw_mus,3705
|
|
337
|
-
autogen/tools/experimental/crawl4ai/__init__.py,sha256=UjFJLSZ9P5xT6WCV0RDPtwt4MHuwPdK90TU7ByXhLWs,207
|
|
338
|
-
autogen/tools/experimental/crawl4ai/crawl4ai.py,sha256=MsOLtbPHRpRrCnRJPQVVVNwmsBcgsWLSHNXDOF-47ws,6088
|
|
339
|
-
autogen/tools/experimental/deep_research/__init__.py,sha256=9SFcDEj2OHxNSlXP11lf1uHENlfUeO47ROcOSD9GCDs,220
|
|
340
|
-
autogen/tools/experimental/deep_research/deep_research.py,sha256=1ZwZjVR1gKHvlWaT7I9_8qrEPTCYhManMci4ZHApIdE,14970
|
|
341
|
-
autogen/tools/experimental/duckduckgo/__init__.py,sha256=hstpKQfvd5YD7X0iMuvJFlui3MtJVGbz5XpkOSaoy18,232
|
|
342
|
-
autogen/tools/experimental/duckduckgo/duckduckgo_search.py,sha256=NCByIKfJz9CXj_IuRQdM8cIEwP_p_ZIt9aFpOjVfzYc,3532
|
|
343
|
-
autogen/tools/experimental/firecrawl/__init__.py,sha256=L-_y07Pzq4TeIIIoYce-catqiZI8f1UAAQpUoL-iYmA,215
|
|
344
|
-
autogen/tools/experimental/firecrawl/firecrawl_tool.py,sha256=4Qj5rFGdQelWJ0OUEVquMZKkxZg5thE-A6Eo9nRPbsU,34803
|
|
345
|
-
autogen/tools/experimental/google/__init__.py,sha256=_j5i9rzajzilQetKCPh5QkX60p1iOri2Yw69zIKAdU0,461
|
|
346
|
-
autogen/tools/experimental/google/model.py,sha256=hm3ynXSJAjeld85iSHo9QgIehoWEqeVhbSPC3EaHm0M,515
|
|
347
|
-
autogen/tools/experimental/google/toolkit_protocol.py,sha256=Jg9aSy4sKDr-yYVxevYr7zbEcmA9EwFWrJBOogLfKJU,485
|
|
348
|
-
autogen/tools/experimental/google/authentication/__init__.py,sha256=9xmOghr2lpxrh7yNOyISFP3z2ZoL4kN0lzBDoMzyglE,361
|
|
349
|
-
autogen/tools/experimental/google/authentication/credentials_hosted_provider.py,sha256=LdMhmMGqCcgQNsw3xeteSwTlKp-UkTWJJLUxJx7lewA,1268
|
|
350
|
-
autogen/tools/experimental/google/authentication/credentials_local_provider.py,sha256=g3ewwhahtEYHyUj4a2hWVWyaLg7nik_2kocsKl2T8ZE,3357
|
|
351
|
-
autogen/tools/experimental/google/authentication/credentials_provider.py,sha256=mQZx7tDn8FzV0U31Nf27tjTjgFK8x8MxK67i_sG8e28,980
|
|
352
|
-
autogen/tools/experimental/google/drive/__init__.py,sha256=UlZiMgZD5xKj1rou3iS9qHAprkqhJMWpESJmLFT8HXE,225
|
|
353
|
-
autogen/tools/experimental/google/drive/drive_functions.py,sha256=5vuSm1c74gWON6pihhd0AJEeHgROyqh0at3Q6ZuS0nI,4497
|
|
354
|
-
autogen/tools/experimental/google/drive/toolkit.py,sha256=rtnIg4bPbRm0yA6FozoJobtx-jkF2t-1IOs9lltHEJk,3414
|
|
355
|
-
autogen/tools/experimental/google_search/__init__.py,sha256=_4eCvmps86qChxDfPw-R9I6-05xKFtYMX-mww8-OhZE,287
|
|
356
|
-
autogen/tools/experimental/google_search/google_search.py,sha256=sA1jE-ykijeObFzcfnOVgvnCG_zW2ULQXUPN2C_H3ww,3857
|
|
357
|
-
autogen/tools/experimental/google_search/youtube_search.py,sha256=liSdEdfJi-728ha8cXE4oBMcrizcmwDQR5Tkvw4mKME,6386
|
|
358
|
-
autogen/tools/experimental/messageplatform/__init__.py,sha256=R_DBu-edxl8iDJSUVsByqiNVgPZzKB5qJERQ8KLknrI,536
|
|
359
|
-
autogen/tools/experimental/messageplatform/discord/__init__.py,sha256=QUdlQ_qOpLv_78txQyTURRw86GcLrYI7UwQU-5aoxK4,256
|
|
360
|
-
autogen/tools/experimental/messageplatform/discord/discord.py,sha256=xc_Zs-5IVGdgp2WpKSfShwE6Pnq_efNeIP8yZBZERKE,12427
|
|
361
|
-
autogen/tools/experimental/messageplatform/slack/__init__.py,sha256=LzsMMPw-_K1kt8L17js0sSematFF8GfX4h-aI6jKB0k,300
|
|
362
|
-
autogen/tools/experimental/messageplatform/slack/slack.py,sha256=C8jnv6o1MXAbfKfJ-gbqLB7IZtvo32OnfSulrGz1glc,18834
|
|
363
|
-
autogen/tools/experimental/messageplatform/telegram/__init__.py,sha256=gPhyMHRvuCn3s2j6b9UFEte0yCC2gFYgTiVHTBrM4dc,261
|
|
364
|
-
autogen/tools/experimental/messageplatform/telegram/telegram.py,sha256=i_rSZO8hgWcYrNKuRsgGVeIkIaw737IonPQtk7K5FjE,12332
|
|
365
|
-
autogen/tools/experimental/perplexity/__init__.py,sha256=VxWG2HfcxwBhLUV4LnAlte9T2dH5dXIy-78gkPVfwSI,232
|
|
366
|
-
autogen/tools/experimental/perplexity/perplexity_search.py,sha256=UZtyS9Pde3_VXufuZVuiBw87MiOiAWwVyXqstzE7Rlk,9976
|
|
367
|
-
autogen/tools/experimental/reliable/__init__.py,sha256=GLvfvsFLfBANFVcOptIa_Tm71YsHt5U7X5N9quqDZW0,479
|
|
368
|
-
autogen/tools/experimental/reliable/reliable.py,sha256=5s3aD5u-6JJrXqbSQBcW2qxNfyvx3MQ--IcZ6wMdsvE,64687
|
|
369
|
-
autogen/tools/experimental/searxng/__init__.py,sha256=IiScuchBMO0wDPUo58s41aQbr0CrTkumHeZj-eSzZJo,223
|
|
370
|
-
autogen/tools/experimental/searxng/searxng_search.py,sha256=Mi_FskvurZqZxFvDfrq59AxyeA8QE02A9lTeDufeNH8,4909
|
|
371
|
-
autogen/tools/experimental/tavily/__init__.py,sha256=rvztagn7FpWiXZwJtZmKbIFBteBenaedwsiUViDyC4Y,220
|
|
372
|
-
autogen/tools/experimental/tavily/tavily_search.py,sha256=S1Aj519kaEIwOAJXTc9Y__GHyY--vvc-P-5nh3ksCOQ,7810
|
|
373
|
-
autogen/tools/experimental/web_search_preview/__init__.py,sha256=8vd1XWS14883MQ4U4dHvMP8aAKAtMILLnqRJNzgNh6A,233
|
|
374
|
-
autogen/tools/experimental/web_search_preview/web_search_preview.py,sha256=bLKZSl0670uh82C3OCceRD0WaRfEPtQ4o06PTsQ3kKk,4818
|
|
375
|
-
autogen/tools/experimental/wikipedia/__init__.py,sha256=jS_gUMyz-uCWr75yKv2esIiGz0ijNDNokt6wovQULLE,274
|
|
376
|
-
autogen/tools/experimental/wikipedia/wikipedia.py,sha256=Cw7luG34J6if_5D40C_039BTA6l_LvOiEg6FY5UysC4,11545
|
|
377
|
-
templates/main.jinja2,sha256=mu7z_4NjI1XMEwQx9KaFQixi4ImfwY0FZQaYUJVBnSc,1765
|
|
378
|
-
templates/client_template/main.jinja2,sha256=9_1pmPNLlPZpfcE0KqXJ6uBVzQtmFqWbxs2xyzCOfxY,2115
|
|
379
|
-
templates/config_template/config.jinja2,sha256=A-p-YBsnEm1iftBIhuIBfIyCY-qw34KWcxalmM6KPWc,167
|
|
380
|
-
autogen/agentchat/contrib/captainagent/tools/README.md,sha256=454O-irP4gjSdYnFgoE0i3BfueXO0qFONxe3GMxMpHg,1677
|
|
381
|
-
autogen/agentchat/contrib/captainagent/tools/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
382
|
-
autogen/agentchat/contrib/captainagent/tools/requirements.txt,sha256=z2uZXzuO-MT_d0EPrk9G3Ct2cQeS-KTj0p7HdgqiEYg,110
|
|
383
|
-
autogen/agentchat/contrib/captainagent/tools/tool_description.tsv,sha256=FoTCONw59WUTNswa23ze6a2MOyvCuhZ8TZddPdU1ACE,3857
|
|
384
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_correlation.py,sha256=7w4d_ica3WBK6xwdblTU9S-tfzhHyrOHYWvU4Bs-08c,1712
|
|
385
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_skewness_and_kurtosis.py,sha256=XHBUs7g3MSJNVNe1dLUl3fu93OsVSDeDL_N-NZRmk4o,955
|
|
386
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_iqr.py,sha256=sh9X19sBWo7MPheBBW0oxWjVThjqTA9sg0d0Qe9L5xw,987
|
|
387
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_zscore.py,sha256=lUZrd55FpkIP5mbAa4ZTMLuGdMlfX4LHF_Y6HCFEGXo,1156
|
|
388
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/explore_csv.py,sha256=E-uSeRbIWdkqePa9mdPJrlXRk1xreQS8QzeA80WgFmE,717
|
|
389
|
-
autogen/agentchat/contrib/captainagent/tools/data_analysis/shapiro_wilk_test.py,sha256=q-jzsu43UnlPFwhqnYYDE0SHLCXv6Z7o3V83eNASM0k,904
|
|
390
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_download.py,sha256=e8dcovrQBmKuvrlR6iNgSY7W_kU3NyqMHhjYUw0ucwY,966
|
|
391
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_search.py,sha256=gXVR-uXxML9Eoce5O96BuASvHeMwMILSdnoMFw15tqo,2062
|
|
392
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_image.py,sha256=WoOehyC_-qZEI2Tfvspel0fxdtGYdjlBUgKcMCtFi6M,1841
|
|
393
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_text.py,sha256=Jnq8BKHHUBzMac7joZtHzY3VxJGO48aKi6XIJu2UyQ0,1107
|
|
394
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_wikipedia_text.py,sha256=N89cJkKsWWOVZ81LFGCML_lckqd6cRtqMXb2xIw_Lms,680
|
|
395
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_youtube_caption.py,sha256=97vxZvTUtQvo7JbHVah8tFvLoIPPdc6Y_1WnSjP-yMY,1105
|
|
396
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/image_qa.py,sha256=clFskT2gTGK9cIMvn7zVC-a6xEavAM3ScVyQLc-TPZY,2203
|
|
397
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/optical_character_recognition.py,sha256=xtSkJ8vXrkpKqCjhgmkChpXcXZHDnS4BgUPXoLaTcck,1936
|
|
398
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/perform_web_search.py,sha256=Gu-s9NobPkdaQCtncpeRHfMR5X7T76srhnpTCQFft9A,1545
|
|
399
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/scrape_wikipedia_tables.py,sha256=xqhIwo6xeUGvnA1e2GFmYJ-2dxFoNqCjZW6ettRgITI,1346
|
|
400
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/transcribe_audio_file.py,sha256=N9D6dy3709oppcZszBHkwO0f7oHe9DzCrahE-ofZY_g,615
|
|
401
|
-
autogen/agentchat/contrib/captainagent/tools/information_retrieval/youtube_download.py,sha256=JH-jKe0gKFqLGOgWg6ppjD0kUcp3rV-1Y3g1Qu1Yf5s,1020
|
|
402
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_circle_area_from_diameter.py,sha256=cVuexCoTOzFS4icvZS4s7XFs9D5rYV1Am9eJGDj9Jsk,556
|
|
403
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_day_of_the_week.py,sha256=W8a0qb1v1BuDmvXkehbH8wY6Dw1qayQSMWGX81Vb6R0,803
|
|
404
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_fraction_sum.py,sha256=8rESE7EqQtWJHpghq1_pqRWjzKtYfj3Ki9XhaQqXpHY,1265
|
|
405
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_matrix_power.py,sha256=iG7tJH_cTB2Jw9BV9onsJGmLZnhCrbZrU8QG3ANIEZM,946
|
|
406
|
-
autogen/agentchat/contrib/captainagent/tools/math/calculate_reflected_point.py,sha256=Iv4ccq1RgXXWdxicoNN_ee3vEfmVeesLDcCbrZ2SlIU,709
|
|
407
|
-
autogen/agentchat/contrib/captainagent/tools/math/complex_numbers_product.py,sha256=Ah8cyJNU9vH6W2OvCgqXUE75dGY5Bu9TCZn3uBHmvLQ,816
|
|
408
|
-
autogen/agentchat/contrib/captainagent/tools/math/compute_currency_conversion.py,sha256=lC0unY_a1KIt1P42YJbXqWAsFQn-sCKxmkYXnPw2BW0,851
|
|
409
|
-
autogen/agentchat/contrib/captainagent/tools/math/count_distinct_permutations.py,sha256=-vmRV2irJ3B-qvSxP3TrbWWnRP44D_r5rRzO1s9_v44,873
|
|
410
|
-
autogen/agentchat/contrib/captainagent/tools/math/evaluate_expression.py,sha256=-aGQ5PhCKosldV0ocKlULnxW4ar6YZI-F4GsCDdLi3U,1051
|
|
411
|
-
autogen/agentchat/contrib/captainagent/tools/math/find_continuity_point.py,sha256=HoXMaaSu7D-rLP-wwE2Ci4ZYcyqFKYEJc4e5zSEmgXU,1277
|
|
412
|
-
autogen/agentchat/contrib/captainagent/tools/math/fraction_to_mixed_numbers.py,sha256=iTE65cODujSAQrj1W1fxz2N1zOfxsf5P0Rb38YE312Q,1659
|
|
413
|
-
autogen/agentchat/contrib/captainagent/tools/math/modular_inverse_sum.py,sha256=XEmQFbEkqljKGD5KGpoHTazJr3poFz6-ZFfBtYqzg3Y,769
|
|
414
|
-
autogen/agentchat/contrib/captainagent/tools/math/simplify_mixed_numbers.py,sha256=iqgpFJdyBHPPNCqkehSIbeuV8Rabr2eDMilT23Wx7PI,1687
|
|
415
|
-
autogen/agentchat/contrib/captainagent/tools/math/sum_of_digit_factorials.py,sha256=-6T5r6Er4mONPldRxv3F9tLoE7Og3qmeSeTC7Du_tTg,596
|
|
416
|
-
autogen/agentchat/contrib/captainagent/tools/math/sum_of_primes_below.py,sha256=Xig7K3A3DRnbv-UXfyo5bybGZUQYAQsltthfTYW5eV8,509
|
|
417
|
-
ag2-0.9.6.dist-info/METADATA,sha256=Syw0Wb_vvJEdWJ52b0UjycmcDQj0PJtCt8ZRUa-lLeM,35268
|
|
418
|
-
ag2-0.9.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
419
|
-
ag2-0.9.6.dist-info/licenses/LICENSE,sha256=GEFQVNayAR-S_rQD5l8hPdgvgyktVdy4Bx5-v90IfRI,11384
|
|
420
|
-
ag2-0.9.6.dist-info/licenses/NOTICE.md,sha256=07iCPQGbth4pQrgkSgZinJGT5nXddkZ6_MGYcBd2oiY,1134
|
|
421
|
-
ag2-0.9.6.dist-info/RECORD,,
|