ag2 0.9.7__py3-none-any.whl → 0.9.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ag2 might be problematic. Click here for more details.
- {ag2-0.9.7.dist-info → ag2-0.9.9.dist-info}/METADATA +102 -75
- ag2-0.9.9.dist-info/RECORD +387 -0
- autogen/__init__.py +1 -2
- autogen/_website/generate_api_references.py +4 -5
- autogen/_website/generate_mkdocs.py +9 -15
- autogen/_website/notebook_processor.py +13 -14
- autogen/_website/process_notebooks.py +10 -10
- autogen/_website/utils.py +5 -4
- autogen/agentchat/agent.py +13 -13
- autogen/agentchat/assistant_agent.py +7 -6
- autogen/agentchat/contrib/agent_eval/agent_eval.py +3 -3
- autogen/agentchat/contrib/agent_eval/critic_agent.py +3 -3
- autogen/agentchat/contrib/agent_eval/quantifier_agent.py +3 -3
- autogen/agentchat/contrib/agent_eval/subcritic_agent.py +3 -3
- autogen/agentchat/contrib/agent_optimizer.py +3 -3
- autogen/agentchat/contrib/capabilities/generate_images.py +11 -11
- autogen/agentchat/contrib/capabilities/teachability.py +15 -15
- autogen/agentchat/contrib/capabilities/transforms.py +17 -18
- autogen/agentchat/contrib/capabilities/transforms_util.py +5 -5
- autogen/agentchat/contrib/capabilities/vision_capability.py +4 -3
- autogen/agentchat/contrib/captainagent/agent_builder.py +30 -30
- autogen/agentchat/contrib/captainagent/captainagent.py +22 -21
- autogen/agentchat/contrib/captainagent/tool_retriever.py +2 -3
- autogen/agentchat/contrib/gpt_assistant_agent.py +9 -9
- autogen/agentchat/contrib/graph_rag/document.py +3 -3
- autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py +3 -3
- autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py +6 -6
- autogen/agentchat/contrib/graph_rag/graph_query_engine.py +3 -3
- autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py +5 -11
- autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py +6 -6
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py +7 -7
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py +6 -6
- autogen/agentchat/contrib/img_utils.py +1 -1
- autogen/agentchat/contrib/llamaindex_conversable_agent.py +11 -11
- autogen/agentchat/contrib/llava_agent.py +18 -4
- autogen/agentchat/contrib/math_user_proxy_agent.py +11 -11
- autogen/agentchat/contrib/multimodal_conversable_agent.py +8 -8
- autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +6 -5
- autogen/agentchat/contrib/rag/chromadb_query_engine.py +22 -26
- autogen/agentchat/contrib/rag/llamaindex_query_engine.py +14 -17
- autogen/agentchat/contrib/rag/mongodb_query_engine.py +27 -37
- autogen/agentchat/contrib/rag/query_engine.py +7 -5
- autogen/agentchat/contrib/retrieve_assistant_agent.py +5 -5
- autogen/agentchat/contrib/retrieve_user_proxy_agent.py +8 -7
- autogen/agentchat/contrib/society_of_mind_agent.py +15 -14
- autogen/agentchat/contrib/swarm_agent.py +76 -98
- autogen/agentchat/contrib/text_analyzer_agent.py +7 -7
- autogen/agentchat/contrib/vectordb/base.py +10 -18
- autogen/agentchat/contrib/vectordb/chromadb.py +2 -1
- autogen/agentchat/contrib/vectordb/couchbase.py +18 -20
- autogen/agentchat/contrib/vectordb/mongodb.py +6 -5
- autogen/agentchat/contrib/vectordb/pgvectordb.py +40 -41
- autogen/agentchat/contrib/vectordb/qdrant.py +5 -5
- autogen/agentchat/contrib/web_surfer.py +20 -19
- autogen/agentchat/conversable_agent.py +292 -290
- autogen/agentchat/group/context_str.py +1 -3
- autogen/agentchat/group/context_variables.py +15 -25
- autogen/agentchat/group/group_tool_executor.py +10 -10
- autogen/agentchat/group/group_utils.py +15 -15
- autogen/agentchat/group/guardrails.py +7 -7
- autogen/agentchat/group/handoffs.py +19 -36
- autogen/agentchat/group/multi_agent_chat.py +7 -7
- autogen/agentchat/group/on_condition.py +4 -7
- autogen/agentchat/group/on_context_condition.py +4 -7
- autogen/agentchat/group/patterns/auto.py +8 -7
- autogen/agentchat/group/patterns/manual.py +7 -6
- autogen/agentchat/group/patterns/pattern.py +13 -12
- autogen/agentchat/group/patterns/random.py +3 -3
- autogen/agentchat/group/patterns/round_robin.py +3 -3
- autogen/agentchat/group/reply_result.py +2 -4
- autogen/agentchat/group/speaker_selection_result.py +5 -5
- autogen/agentchat/group/targets/group_chat_target.py +7 -6
- autogen/agentchat/group/targets/group_manager_target.py +4 -4
- autogen/agentchat/group/targets/transition_target.py +2 -1
- autogen/agentchat/groupchat.py +60 -63
- autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py +4 -4
- autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py +4 -4
- autogen/agentchat/realtime/experimental/clients/gemini/client.py +7 -7
- autogen/agentchat/realtime/experimental/clients/oai/base_client.py +8 -8
- autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py +6 -6
- autogen/agentchat/realtime/experimental/clients/realtime_client.py +10 -9
- autogen/agentchat/realtime/experimental/realtime_agent.py +10 -9
- autogen/agentchat/realtime/experimental/realtime_observer.py +3 -3
- autogen/agentchat/realtime/experimental/realtime_swarm.py +44 -44
- autogen/agentchat/user_proxy_agent.py +10 -9
- autogen/agentchat/utils.py +3 -3
- autogen/agents/contrib/time/time_reply_agent.py +6 -5
- autogen/agents/contrib/time/time_tool_agent.py +2 -1
- autogen/agents/experimental/deep_research/deep_research.py +3 -3
- autogen/agents/experimental/discord/discord.py +2 -2
- autogen/agents/experimental/document_agent/chroma_query_engine.py +29 -44
- autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py +9 -14
- autogen/agents/experimental/document_agent/document_agent.py +15 -16
- autogen/agents/experimental/document_agent/document_conditions.py +3 -3
- autogen/agents/experimental/document_agent/document_utils.py +5 -9
- autogen/agents/experimental/document_agent/inmemory_query_engine.py +14 -20
- autogen/agents/experimental/document_agent/parser_utils.py +4 -4
- autogen/agents/experimental/document_agent/url_utils.py +14 -23
- autogen/agents/experimental/reasoning/reasoning_agent.py +33 -33
- autogen/agents/experimental/slack/slack.py +2 -2
- autogen/agents/experimental/telegram/telegram.py +2 -3
- autogen/agents/experimental/websurfer/websurfer.py +4 -4
- autogen/agents/experimental/wikipedia/wikipedia.py +5 -7
- autogen/browser_utils.py +8 -8
- autogen/cache/abstract_cache_base.py +5 -5
- autogen/cache/cache.py +12 -12
- autogen/cache/cache_factory.py +4 -4
- autogen/cache/cosmos_db_cache.py +9 -9
- autogen/cache/disk_cache.py +6 -6
- autogen/cache/in_memory_cache.py +4 -4
- autogen/cache/redis_cache.py +4 -4
- autogen/code_utils.py +18 -18
- autogen/coding/base.py +6 -6
- autogen/coding/docker_commandline_code_executor.py +9 -9
- autogen/coding/func_with_reqs.py +7 -6
- autogen/coding/jupyter/base.py +3 -3
- autogen/coding/jupyter/docker_jupyter_server.py +3 -4
- autogen/coding/jupyter/import_utils.py +3 -3
- autogen/coding/jupyter/jupyter_client.py +5 -5
- autogen/coding/jupyter/jupyter_code_executor.py +3 -4
- autogen/coding/jupyter/local_jupyter_server.py +2 -6
- autogen/coding/local_commandline_code_executor.py +8 -7
- autogen/coding/markdown_code_extractor.py +1 -2
- autogen/coding/utils.py +1 -2
- autogen/doc_utils.py +3 -2
- autogen/environments/docker_python_environment.py +19 -29
- autogen/environments/python_environment.py +8 -17
- autogen/environments/system_python_environment.py +3 -4
- autogen/environments/venv_python_environment.py +8 -12
- autogen/environments/working_directory.py +1 -2
- autogen/events/agent_events.py +106 -109
- autogen/events/base_event.py +6 -5
- autogen/events/client_events.py +15 -14
- autogen/events/helpers.py +1 -1
- autogen/events/print_event.py +4 -5
- autogen/fast_depends/_compat.py +10 -15
- autogen/fast_depends/core/build.py +17 -36
- autogen/fast_depends/core/model.py +64 -113
- autogen/fast_depends/dependencies/model.py +2 -1
- autogen/fast_depends/dependencies/provider.py +3 -2
- autogen/fast_depends/library/model.py +4 -4
- autogen/fast_depends/schema.py +7 -7
- autogen/fast_depends/use.py +17 -25
- autogen/fast_depends/utils.py +10 -30
- autogen/formatting_utils.py +6 -6
- autogen/graph_utils.py +1 -4
- autogen/import_utils.py +38 -27
- autogen/interop/crewai/crewai.py +2 -2
- autogen/interop/interoperable.py +2 -2
- autogen/interop/langchain/langchain_chat_model_factory.py +3 -2
- autogen/interop/langchain/langchain_tool.py +2 -6
- autogen/interop/litellm/litellm_config_factory.py +6 -7
- autogen/interop/pydantic_ai/pydantic_ai.py +4 -7
- autogen/interop/registry.py +2 -1
- autogen/io/base.py +5 -5
- autogen/io/run_response.py +33 -32
- autogen/io/websockets.py +6 -5
- autogen/json_utils.py +1 -2
- autogen/llm_config/__init__.py +11 -0
- autogen/llm_config/client.py +58 -0
- autogen/llm_config/config.py +384 -0
- autogen/llm_config/entry.py +154 -0
- autogen/logger/base_logger.py +4 -3
- autogen/logger/file_logger.py +2 -1
- autogen/logger/logger_factory.py +2 -2
- autogen/logger/logger_utils.py +2 -2
- autogen/logger/sqlite_logger.py +2 -1
- autogen/math_utils.py +4 -5
- autogen/mcp/__main__.py +6 -6
- autogen/mcp/helpers.py +4 -4
- autogen/mcp/mcp_client.py +170 -29
- autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py +3 -4
- autogen/mcp/mcp_proxy/mcp_proxy.py +23 -26
- autogen/mcp/mcp_proxy/operation_grouping.py +4 -5
- autogen/mcp/mcp_proxy/operation_renaming.py +6 -10
- autogen/mcp/mcp_proxy/security.py +2 -3
- autogen/messages/agent_messages.py +96 -98
- autogen/messages/base_message.py +6 -5
- autogen/messages/client_messages.py +15 -14
- autogen/messages/print_message.py +4 -5
- autogen/oai/__init__.py +1 -2
- autogen/oai/anthropic.py +42 -41
- autogen/oai/bedrock.py +68 -57
- autogen/oai/cerebras.py +26 -25
- autogen/oai/client.py +113 -139
- autogen/oai/client_utils.py +3 -3
- autogen/oai/cohere.py +34 -11
- autogen/oai/gemini.py +39 -17
- autogen/oai/gemini_types.py +11 -12
- autogen/oai/groq.py +22 -10
- autogen/oai/mistral.py +17 -11
- autogen/oai/oai_models/__init__.py +14 -2
- autogen/oai/oai_models/_models.py +2 -2
- autogen/oai/oai_models/chat_completion.py +13 -14
- autogen/oai/oai_models/chat_completion_message.py +11 -9
- autogen/oai/oai_models/chat_completion_message_tool_call.py +26 -3
- autogen/oai/oai_models/chat_completion_token_logprob.py +3 -4
- autogen/oai/oai_models/completion_usage.py +8 -9
- autogen/oai/ollama.py +19 -9
- autogen/oai/openai_responses.py +40 -17
- autogen/oai/openai_utils.py +48 -38
- autogen/oai/together.py +29 -14
- autogen/retrieve_utils.py +6 -7
- autogen/runtime_logging.py +5 -4
- autogen/token_count_utils.py +7 -4
- autogen/tools/contrib/time/time.py +0 -1
- autogen/tools/dependency_injection.py +5 -6
- autogen/tools/experimental/browser_use/browser_use.py +10 -10
- autogen/tools/experimental/code_execution/python_code_execution.py +5 -7
- autogen/tools/experimental/crawl4ai/crawl4ai.py +12 -15
- autogen/tools/experimental/deep_research/deep_research.py +9 -8
- autogen/tools/experimental/duckduckgo/duckduckgo_search.py +5 -11
- autogen/tools/experimental/firecrawl/firecrawl_tool.py +98 -115
- autogen/tools/experimental/google/authentication/credentials_local_provider.py +1 -1
- autogen/tools/experimental/google/drive/drive_functions.py +4 -4
- autogen/tools/experimental/google/drive/toolkit.py +5 -5
- autogen/tools/experimental/google_search/google_search.py +5 -5
- autogen/tools/experimental/google_search/youtube_search.py +5 -5
- autogen/tools/experimental/messageplatform/discord/discord.py +8 -12
- autogen/tools/experimental/messageplatform/slack/slack.py +14 -20
- autogen/tools/experimental/messageplatform/telegram/telegram.py +8 -12
- autogen/tools/experimental/perplexity/perplexity_search.py +18 -29
- autogen/tools/experimental/reliable/reliable.py +68 -74
- autogen/tools/experimental/searxng/searxng_search.py +20 -19
- autogen/tools/experimental/tavily/tavily_search.py +12 -19
- autogen/tools/experimental/web_search_preview/web_search_preview.py +13 -7
- autogen/tools/experimental/wikipedia/wikipedia.py +7 -10
- autogen/tools/function_utils.py +7 -7
- autogen/tools/tool.py +8 -6
- autogen/types.py +2 -2
- autogen/version.py +1 -1
- ag2-0.9.7.dist-info/RECORD +0 -421
- autogen/llm_config.py +0 -385
- {ag2-0.9.7.dist-info → ag2-0.9.9.dist-info}/WHEEL +0 -0
- {ag2-0.9.7.dist-info → ag2-0.9.9.dist-info}/licenses/LICENSE +0 -0
- {ag2-0.9.7.dist-info → ag2-0.9.9.dist-info}/licenses/NOTICE.md +0 -0
|
@@ -0,0 +1,387 @@
|
|
|
1
|
+
autogen/__init__.py,sha256=pjy2Pv0o9AX0MqImMEUh7OnXQaw7gEZIbqTpmBV4eLc,2104
|
|
2
|
+
autogen/browser_utils.py,sha256=1z44r6atBGg4HFbR1GNDawSFeSVY0TmKQjQNMcclibs,13205
|
|
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=GoP9s9Bs6PQgfwdKuw0mHsdN-2lfO8rLGOdtKy7VcXk,7871
|
|
9
|
+
autogen/import_utils.py,sha256=3glC9nVnLr9tWGCPCgcVEUBOL8G8CYu_aVU2Om2wOrc,18090
|
|
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=k50Vii75GhjkiYuw0gaWd7PjtiR-ZucNcN0xSJkBRKo,10859
|
|
15
|
+
autogen/types.py,sha256=-C23PYj5EdwPZxcL3r0wFLAsQTXyVReghsdKV5b9jO4,982
|
|
16
|
+
autogen/version.py,sha256=pubFTFvRVxnFnZerYS_WWu4SYJu3F3DLPCPt9NNnDDw,193
|
|
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=VB-bm-9jfv9jtFKmKsGAXPa1Z-lq0g8MwVkLfdTIMJ8,43180
|
|
20
|
+
autogen/_website/notebook_processor.py,sha256=EmNTnxBe8PwhulJEF1YZGqEIvBTifa48biGu0cCCc2w,16502
|
|
21
|
+
autogen/_website/process_notebooks.py,sha256=3MW1oWdBh1id5OpFI_4SoJ2EEfmrNDD0xMkTC2Tcp8Y,25902
|
|
22
|
+
autogen/_website/utils.py,sha256=7LyrogEDq2Qi8kWck305tiXaJ6Ws_dr7v3yKlE2uhs8,14710
|
|
23
|
+
autogen/agentchat/__init__.py,sha256=d5jPpXeavynP9eh5uMIgJKbK3-3tywJBa6l3L9X4l34,1347
|
|
24
|
+
autogen/agentchat/agent.py,sha256=HgKK4lGxu5sqITMpq3GC4EnrVN_1IqXcKKXY4fxYH6o,5769
|
|
25
|
+
autogen/agentchat/assistant_agent.py,sha256=f6Y32ECsIA4nhEzgFUF8VhUcTg7k_0KOjpAL7CdymaI,5731
|
|
26
|
+
autogen/agentchat/chat.py,sha256=6Gx2t1-Xa8kP6ZoUihHBNGOqNlrGhhqLPKrckL0n-RI,14003
|
|
27
|
+
autogen/agentchat/conversable_agent.py,sha256=vQFAF_bRtsVYe4WmweUQxeR3Vp5ypVn0F5XnoTGWE34,193143
|
|
28
|
+
autogen/agentchat/groupchat.py,sha256=PbOO2eTyKuknl3tcLgrcCi5I7If9XxhNf3V5wNcfzMw,89290
|
|
29
|
+
autogen/agentchat/user_proxy_agent.py,sha256=jlfda15H2S6KvOF5XwdtjEuBowcJ1vIqJKdutw26JBI,7411
|
|
30
|
+
autogen/agentchat/utils.py,sha256=eWLFoB2qQBUW44PQiWJ5SRxT1w1UXxwL28JsjOwGqg0,8206
|
|
31
|
+
autogen/agentchat/contrib/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
32
|
+
autogen/agentchat/contrib/agent_optimizer.py,sha256=TXNHD9-myPKXwurd_pjQ_rpRj0ohsRKoG676a6E5BoU,22402
|
|
33
|
+
autogen/agentchat/contrib/gpt_assistant_agent.py,sha256=mms6DK0s91Y-iF_-GKY_WfWzLzz5hY2Q0TJOCYezNU0,24999
|
|
34
|
+
autogen/agentchat/contrib/img_utils.py,sha256=NQ0yAbY5zugnl00ZVqBgNKyBYwiguEOFxtVTlSMQIfM,15115
|
|
35
|
+
autogen/agentchat/contrib/llamaindex_conversable_agent.py,sha256=DD-JbrRnrsPKpLJPxtel7tS904giS1LTQmuFraDsCig,4533
|
|
36
|
+
autogen/agentchat/contrib/llava_agent.py,sha256=AX0Kn1OPkpNzvYLlMuTWnvwvzhoZ2l7Yl2mRc84vUEE,7127
|
|
37
|
+
autogen/agentchat/contrib/math_user_proxy_agent.py,sha256=Icw5nLbZwmzXsoGmFSE8KhTCknWOtJSkAdh78M9Wj8E,19678
|
|
38
|
+
autogen/agentchat/contrib/multimodal_conversable_agent.py,sha256=zgFHgiaBitUJuJ3V6zGja42fyN4-otVceIK_Sx-1Ddg,5112
|
|
39
|
+
autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py,sha256=WhKltVJkK_X7Y_eHTgXq4m9IthktVa3zgOt0vPOqV2U,19398
|
|
40
|
+
autogen/agentchat/contrib/retrieve_assistant_agent.py,sha256=Ne60kIo8PNgHsbxzOZNSl0GF9L03y7y25E2aMlf-cew,2401
|
|
41
|
+
autogen/agentchat/contrib/retrieve_user_proxy_agent.py,sha256=JbihbazTRJVspI8SmXA1HaBKMh6t7RdcI6zNGQ2oWag,37348
|
|
42
|
+
autogen/agentchat/contrib/society_of_mind_agent.py,sha256=S8FYf6DoYf1vbUcSLE_r3En6CeNKp6HPngT7H5e_iMc,9092
|
|
43
|
+
autogen/agentchat/contrib/swarm_agent.py,sha256=Vm7D5WZmHHgkXaCcWSbLY_3OL94uzLJSSV20Kn-a7gw,65902
|
|
44
|
+
autogen/agentchat/contrib/text_analyzer_agent.py,sha256=B82Y5rU4EbDh1R_NiHVle5RVzmcLUkb68YOHc7AF7f4,3693
|
|
45
|
+
autogen/agentchat/contrib/web_surfer.py,sha256=wOyUuZb3fuVbztwv_0fVcDts-aJHzu8RU3O1IqBtVfU,14512
|
|
46
|
+
autogen/agentchat/contrib/agent_eval/README.md,sha256=3uDjyARQVX3QJXDm05L33x8lp0zYbk2yJj4foBSq3qc,587
|
|
47
|
+
autogen/agentchat/contrib/agent_eval/agent_eval.py,sha256=Dg8DSCwwHqjZdZVIy6LABFP2nRpp_gDkiyhQgc2v4LU,3982
|
|
48
|
+
autogen/agentchat/contrib/agent_eval/criterion.py,sha256=-kJxoqyIhK6ZqKKWmcAt6zyymS5SOU9j1siVMWztIqk,1339
|
|
49
|
+
autogen/agentchat/contrib/agent_eval/critic_agent.py,sha256=JEOp6rZmO6GjKhJtty1K7rZ8YWgAlhJ26bFvUvZcHqA,2074
|
|
50
|
+
autogen/agentchat/contrib/agent_eval/quantifier_agent.py,sha256=Z4YZCoLnqpwcUAsVgLk2JbmWwC2ujBmj8nYynRlH6Mw,2012
|
|
51
|
+
autogen/agentchat/contrib/agent_eval/subcritic_agent.py,sha256=OK4J6L5opdlr5NzswBogateXWJK4hS5AAApydm1LEq8,2631
|
|
52
|
+
autogen/agentchat/contrib/agent_eval/task.py,sha256=s890Gbz6boscDyTuwuTmqa-GhdqE0qXIRr-pZYG1H2I,1419
|
|
53
|
+
autogen/agentchat/contrib/capabilities/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
54
|
+
autogen/agentchat/contrib/capabilities/agent_capability.py,sha256=lRHkFzk--FJIyl9mTXc1GDXjCfewUbhHFPih0DrvKXw,786
|
|
55
|
+
autogen/agentchat/contrib/capabilities/generate_images.py,sha256=t8eqets2oj8qbg33WXUD2EP0JEnFZkXCRluvm5PBxB0,12835
|
|
56
|
+
autogen/agentchat/contrib/capabilities/teachability.py,sha256=TvissjsVLqp8AoG2ll32iOMcAeON9B2ureujxv-e-L8,19333
|
|
57
|
+
autogen/agentchat/contrib/capabilities/text_compressors.py,sha256=tm5WDf0AC0VznFJ44Hy7zHh_Erar2c1OjExVt1MG8j8,2985
|
|
58
|
+
autogen/agentchat/contrib/capabilities/tools_capability.py,sha256=iSECQqsHp-MBWu6Huo6OAH4ehSI04QYDGQBjUupFsPI,773
|
|
59
|
+
autogen/agentchat/contrib/capabilities/transform_messages.py,sha256=bFUxDkq0jWLcgccE3Zp4_JD12zIVRE7AMVFwSJqssSY,3783
|
|
60
|
+
autogen/agentchat/contrib/capabilities/transforms.py,sha256=Mby0qrF1i-1QFlpmiqw15BH0GCywOZDcyEElVjgkjgU,26211
|
|
61
|
+
autogen/agentchat/contrib/capabilities/transforms_util.py,sha256=apxuCKiqDDqaSnBOov3dYXQONkia1CqIbNz_C2nFEf4,4534
|
|
62
|
+
autogen/agentchat/contrib/capabilities/vision_capability.py,sha256=4xtXY3V2Tc6A9EbpeHSUDvHY5WGJlRPLf5UltfjzhcE,9873
|
|
63
|
+
autogen/agentchat/contrib/captainagent/__init__.py,sha256=12X-ClPVPXBnN59wduSLhQ-PmUWXO45vvafHPQOUVV8,414
|
|
64
|
+
autogen/agentchat/contrib/captainagent/agent_builder.py,sha256=YtvmZ_Qhxne2xP9yZQjOMY2MGaMybeATW5bghFeCSNI,34130
|
|
65
|
+
autogen/agentchat/contrib/captainagent/captainagent.py,sha256=ogAHxIDOAqA1ap7xJhYTJPWdpbYTXk6UBDA9OxRFW0s,27292
|
|
66
|
+
autogen/agentchat/contrib/captainagent/tool_retriever.py,sha256=5BSqP6RklVgSPQ57N3nZBsqjuo_WXfGUVERkuMA4SEY,12754
|
|
67
|
+
autogen/agentchat/contrib/captainagent/tools/README.md,sha256=454O-irP4gjSdYnFgoE0i3BfueXO0qFONxe3GMxMpHg,1677
|
|
68
|
+
autogen/agentchat/contrib/captainagent/tools/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
69
|
+
autogen/agentchat/contrib/captainagent/tools/requirements.txt,sha256=z2uZXzuO-MT_d0EPrk9G3Ct2cQeS-KTj0p7HdgqiEYg,110
|
|
70
|
+
autogen/agentchat/contrib/captainagent/tools/tool_description.tsv,sha256=FoTCONw59WUTNswa23ze6a2MOyvCuhZ8TZddPdU1ACE,3857
|
|
71
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_correlation.py,sha256=7w4d_ica3WBK6xwdblTU9S-tfzhHyrOHYWvU4Bs-08c,1712
|
|
72
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_skewness_and_kurtosis.py,sha256=XHBUs7g3MSJNVNe1dLUl3fu93OsVSDeDL_N-NZRmk4o,955
|
|
73
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_iqr.py,sha256=sh9X19sBWo7MPheBBW0oxWjVThjqTA9sg0d0Qe9L5xw,987
|
|
74
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_zscore.py,sha256=lUZrd55FpkIP5mbAa4ZTMLuGdMlfX4LHF_Y6HCFEGXo,1156
|
|
75
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/explore_csv.py,sha256=E-uSeRbIWdkqePa9mdPJrlXRk1xreQS8QzeA80WgFmE,717
|
|
76
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/shapiro_wilk_test.py,sha256=q-jzsu43UnlPFwhqnYYDE0SHLCXv6Z7o3V83eNASM0k,904
|
|
77
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_download.py,sha256=e8dcovrQBmKuvrlR6iNgSY7W_kU3NyqMHhjYUw0ucwY,966
|
|
78
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_search.py,sha256=gXVR-uXxML9Eoce5O96BuASvHeMwMILSdnoMFw15tqo,2062
|
|
79
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_image.py,sha256=WoOehyC_-qZEI2Tfvspel0fxdtGYdjlBUgKcMCtFi6M,1841
|
|
80
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_text.py,sha256=Jnq8BKHHUBzMac7joZtHzY3VxJGO48aKi6XIJu2UyQ0,1107
|
|
81
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_wikipedia_text.py,sha256=N89cJkKsWWOVZ81LFGCML_lckqd6cRtqMXb2xIw_Lms,680
|
|
82
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_youtube_caption.py,sha256=97vxZvTUtQvo7JbHVah8tFvLoIPPdc6Y_1WnSjP-yMY,1105
|
|
83
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/image_qa.py,sha256=clFskT2gTGK9cIMvn7zVC-a6xEavAM3ScVyQLc-TPZY,2203
|
|
84
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/optical_character_recognition.py,sha256=xtSkJ8vXrkpKqCjhgmkChpXcXZHDnS4BgUPXoLaTcck,1936
|
|
85
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/perform_web_search.py,sha256=Gu-s9NobPkdaQCtncpeRHfMR5X7T76srhnpTCQFft9A,1545
|
|
86
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/scrape_wikipedia_tables.py,sha256=xqhIwo6xeUGvnA1e2GFmYJ-2dxFoNqCjZW6ettRgITI,1346
|
|
87
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/transcribe_audio_file.py,sha256=N9D6dy3709oppcZszBHkwO0f7oHe9DzCrahE-ofZY_g,615
|
|
88
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/youtube_download.py,sha256=JH-jKe0gKFqLGOgWg6ppjD0kUcp3rV-1Y3g1Qu1Yf5s,1020
|
|
89
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_circle_area_from_diameter.py,sha256=cVuexCoTOzFS4icvZS4s7XFs9D5rYV1Am9eJGDj9Jsk,556
|
|
90
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_day_of_the_week.py,sha256=W8a0qb1v1BuDmvXkehbH8wY6Dw1qayQSMWGX81Vb6R0,803
|
|
91
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_fraction_sum.py,sha256=8rESE7EqQtWJHpghq1_pqRWjzKtYfj3Ki9XhaQqXpHY,1265
|
|
92
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_matrix_power.py,sha256=iG7tJH_cTB2Jw9BV9onsJGmLZnhCrbZrU8QG3ANIEZM,946
|
|
93
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_reflected_point.py,sha256=Iv4ccq1RgXXWdxicoNN_ee3vEfmVeesLDcCbrZ2SlIU,709
|
|
94
|
+
autogen/agentchat/contrib/captainagent/tools/math/complex_numbers_product.py,sha256=Ah8cyJNU9vH6W2OvCgqXUE75dGY5Bu9TCZn3uBHmvLQ,816
|
|
95
|
+
autogen/agentchat/contrib/captainagent/tools/math/compute_currency_conversion.py,sha256=lC0unY_a1KIt1P42YJbXqWAsFQn-sCKxmkYXnPw2BW0,851
|
|
96
|
+
autogen/agentchat/contrib/captainagent/tools/math/count_distinct_permutations.py,sha256=-vmRV2irJ3B-qvSxP3TrbWWnRP44D_r5rRzO1s9_v44,873
|
|
97
|
+
autogen/agentchat/contrib/captainagent/tools/math/evaluate_expression.py,sha256=-aGQ5PhCKosldV0ocKlULnxW4ar6YZI-F4GsCDdLi3U,1051
|
|
98
|
+
autogen/agentchat/contrib/captainagent/tools/math/find_continuity_point.py,sha256=HoXMaaSu7D-rLP-wwE2Ci4ZYcyqFKYEJc4e5zSEmgXU,1277
|
|
99
|
+
autogen/agentchat/contrib/captainagent/tools/math/fraction_to_mixed_numbers.py,sha256=iTE65cODujSAQrj1W1fxz2N1zOfxsf5P0Rb38YE312Q,1659
|
|
100
|
+
autogen/agentchat/contrib/captainagent/tools/math/modular_inverse_sum.py,sha256=XEmQFbEkqljKGD5KGpoHTazJr3poFz6-ZFfBtYqzg3Y,769
|
|
101
|
+
autogen/agentchat/contrib/captainagent/tools/math/simplify_mixed_numbers.py,sha256=iqgpFJdyBHPPNCqkehSIbeuV8Rabr2eDMilT23Wx7PI,1687
|
|
102
|
+
autogen/agentchat/contrib/captainagent/tools/math/sum_of_digit_factorials.py,sha256=-6T5r6Er4mONPldRxv3F9tLoE7Og3qmeSeTC7Du_tTg,596
|
|
103
|
+
autogen/agentchat/contrib/captainagent/tools/math/sum_of_primes_below.py,sha256=Xig7K3A3DRnbv-UXfyo5bybGZUQYAQsltthfTYW5eV8,509
|
|
104
|
+
autogen/agentchat/contrib/graph_rag/__init__.py,sha256=hSAlgZLlKyTwTEIc4YNfay4uI909cNQluXO5DMHDVZE,421
|
|
105
|
+
autogen/agentchat/contrib/graph_rag/document.py,sha256=kuTnpId0wdY3tHHu6ajeUWYyr2mIiSQXVUqdkhCexNg,739
|
|
106
|
+
autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py,sha256=zaLBpAds6KPP0k9zeihQlby3t5ISAUehnVZZNCLHsNw,7202
|
|
107
|
+
autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py,sha256=l-nY29i5ZdO87lCnfZ-3TSGKtjsX0_A1doQk35SVV7A,4533
|
|
108
|
+
autogen/agentchat/contrib/graph_rag/graph_query_engine.py,sha256=GLHUrxtsBJXtaSVMF31Wk1lBN8p6oVA7bpBTuBBnpTY,1860
|
|
109
|
+
autogen/agentchat/contrib/graph_rag/graph_rag_capability.py,sha256=4rDo097SGDqeQzzkCle2hq_nKHoesByQG85N0jh2zpM,2346
|
|
110
|
+
autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py,sha256=YK-q6g-ZWwSwTIkDNPn4aTkEeJALvFvhB03rd9XfRwU,11040
|
|
111
|
+
autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py,sha256=hlhkGGXmPMQpnQwO7ZuAWkExz0jvHubu75SE4_FVuoo,3514
|
|
112
|
+
autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py,sha256=_X2mNzmJpFBTjyqy895KUENCaNGIJOs_9SyHAF24uAs,8657
|
|
113
|
+
autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py,sha256=ArZY-xb24R9qxUcbSf1dSCRG38gNicvfJMp85qL0oqk,4174
|
|
114
|
+
autogen/agentchat/contrib/rag/__init__.py,sha256=OfAsxrgpjj3eFaVXyo6oWyC05r9M0UCCkWjsERQbfRo,452
|
|
115
|
+
autogen/agentchat/contrib/rag/chromadb_query_engine.py,sha256=PGRQ2dKP6qWWmQbIVOWUoiiQTQhvCNWn35XLSdm-_SU,12486
|
|
116
|
+
autogen/agentchat/contrib/rag/llamaindex_query_engine.py,sha256=kybAfct_wPi2DZBm6iAAEbZKAKVojUFkDObhwQvXIPE,8578
|
|
117
|
+
autogen/agentchat/contrib/rag/mongodb_query_engine.py,sha256=Ng_cShctPOTYU69R_7xXwm4FrcTatddh3t5dIzZMpHk,14873
|
|
118
|
+
autogen/agentchat/contrib/rag/query_engine.py,sha256=QThzoHnwDqnzN9Z8x9O9k8FkySvGSs_Qb1MVIhtKt0g,2504
|
|
119
|
+
autogen/agentchat/contrib/vectordb/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
120
|
+
autogen/agentchat/contrib/vectordb/base.py,sha256=khSYyuboUpU8njgL30wvBCQIBrYeWb0aFlbcZzQf0ds,9230
|
|
121
|
+
autogen/agentchat/contrib/vectordb/chromadb.py,sha256=dQ-ZhGehFph3ZD4p35XndLtqeaOgUXpfEItjbIm6bgU,13607
|
|
122
|
+
autogen/agentchat/contrib/vectordb/couchbase.py,sha256=Rorrhr23Zuee5oPP73zj2tSF4vXNyfUwp8cXxEhX-J4,16953
|
|
123
|
+
autogen/agentchat/contrib/vectordb/mongodb.py,sha256=rCUvS1TO9b1jF17yDMAI3hJ5S0MQO-BiOrUIMWyziLk,23503
|
|
124
|
+
autogen/agentchat/contrib/vectordb/pgvectordb.py,sha256=LOsQ5-IPVvbUnbpabz-bgCqyRFD6oNgc91GHkV7u9qY,39165
|
|
125
|
+
autogen/agentchat/contrib/vectordb/qdrant.py,sha256=kJ7tfCZuBFVNTZa1QVQvwLDw01orp70Gulx2anG4ubM,13798
|
|
126
|
+
autogen/agentchat/contrib/vectordb/utils.py,sha256=oYdv8aopbG329mESAD2urt_eeTDHjyW5GroX0_d3chk,4490
|
|
127
|
+
autogen/agentchat/group/__init__.py,sha256=1ukpdiPxAWBhBOWxVjqULImgxuxrZ2SUqaE3EUZjMsI,1883
|
|
128
|
+
autogen/agentchat/group/available_condition.py,sha256=Sz4ZHGH0bFO8Z-SFbfe591LabvMHcxcqzA5pQaolyK4,3079
|
|
129
|
+
autogen/agentchat/group/context_condition.py,sha256=UwIOBqPzwi0emfkmseavTJJ6f0VA70dxuTld_FrewjY,2400
|
|
130
|
+
autogen/agentchat/group/context_expression.py,sha256=zFWPV3yfV-0ayYXfrhRq6iWQZnRTa8SKHonb-5D7gkM,9890
|
|
131
|
+
autogen/agentchat/group/context_str.py,sha256=Jv8v8oNFymZGmahWpARdBrXBkmZUZWBDsfMyKwzTtHw,1238
|
|
132
|
+
autogen/agentchat/group/context_variables.py,sha256=1GkOokaaYX-Xc5b9ZylytjQxjhLAyY8MW3quPBJuoFM,5562
|
|
133
|
+
autogen/agentchat/group/group_tool_executor.py,sha256=HNf9zhRGU2mBSlmyjhZDCy5Umyq2xMH4_hsMVSu5smQ,9110
|
|
134
|
+
autogen/agentchat/group/group_utils.py,sha256=Y4KOZbqM81lqFmqg9K5xnbjr4YYBfk3iMkm1GK8tygs,27534
|
|
135
|
+
autogen/agentchat/group/guardrails.py,sha256=WpCKT5j3q7317Dy_6wc-MQ_p58J4pTTXqtO5iyfLS7A,5920
|
|
136
|
+
autogen/agentchat/group/handoffs.py,sha256=HpJswv72i6pwBG9HQjfkxqCbEZJeF6hsQp5-MHBkqpY,11575
|
|
137
|
+
autogen/agentchat/group/llm_condition.py,sha256=wfuEET1VhyVVGedYxcyuhX_Vus6uZHxUl_SPpu4YIsc,2951
|
|
138
|
+
autogen/agentchat/group/multi_agent_chat.py,sha256=7wxi4FzHWtP2UDpWEIUhSFnD1fZ_jTIYFjrP4CcLEZw,7645
|
|
139
|
+
autogen/agentchat/group/on_condition.py,sha256=xMYM0-9RqdQMh-B78zveQlVkuy9ybuHxNWoTApM0tz8,2133
|
|
140
|
+
autogen/agentchat/group/on_context_condition.py,sha256=Lh6m7kFt3dos1JLja3WPmH_9qTYhIkpM6hIL6T6YgU0,2032
|
|
141
|
+
autogen/agentchat/group/reply_result.py,sha256=DItDGQdaUucCuOIw8kGQDpwt9Li80xvt6Phmo2_14Xk,705
|
|
142
|
+
autogen/agentchat/group/speaker_selection_result.py,sha256=Mqn7LfiMqBBwhF0MxTqX9FdUdkflR7YHK_BV80Fmr28,1588
|
|
143
|
+
autogen/agentchat/group/patterns/__init__.py,sha256=SUw-biSWow_uGHuHcMA3Pu2cq_CTTVeIqY2J8A5fq8A,446
|
|
144
|
+
autogen/agentchat/group/patterns/auto.py,sha256=zYvrTM6n2BfK-Gek4ViJwWFjz4zG0g_p3FmUXowfX3w,6064
|
|
145
|
+
autogen/agentchat/group/patterns/manual.py,sha256=F9VxDtazLslf6zKLahaqL5pa55inyTdUQlyGag8STTM,6316
|
|
146
|
+
autogen/agentchat/group/patterns/pattern.py,sha256=RMEPnMavpl7NP84hoaIZAwyQtxjHy1jmU4M_-Ea45CQ,10836
|
|
147
|
+
autogen/agentchat/group/patterns/random.py,sha256=Zte7JVN9illCqNRi3MkOGqSvKtJXmPaefB5bbTgyScI,3347
|
|
148
|
+
autogen/agentchat/group/patterns/round_robin.py,sha256=fYzkSoP7pi14Njvf5ZcKYBTymRglMo2BrB96HWzrC_o,3875
|
|
149
|
+
autogen/agentchat/group/targets/__init__.py,sha256=AJNSbl9iMe2hiDmZojTp8h889o5OYN3V7f2_2nr8px4,145
|
|
150
|
+
autogen/agentchat/group/targets/group_chat_target.py,sha256=PcHQepNhR-_QK4q_L0P8rXZOsiRCfIzs5wnkmLGtMMI,5347
|
|
151
|
+
autogen/agentchat/group/targets/group_manager_target.py,sha256=XpAxIOy6NlyZOWN5omImnuNCXbQAQ3k2e2vif8CI4qk,6251
|
|
152
|
+
autogen/agentchat/group/targets/transition_target.py,sha256=XnKWiyZn3jMpAFiKH2XL8gxihS-YHYrRMvyOnOwwm8I,16751
|
|
153
|
+
autogen/agentchat/group/targets/transition_utils.py,sha256=fzRnaJtUEnNswkmamQH08X43xX2kV0SWGIWEV72TtIo,219
|
|
154
|
+
autogen/agentchat/realtime/__init__.py,sha256=c8B9TpO07x9neD0zsJWj6AaEdlcP-WvxrvVOGWLtamk,143
|
|
155
|
+
autogen/agentchat/realtime/experimental/__init__.py,sha256=leYemaQJXulYnp5atRJZE247EL5VJtdDoF_p1XJFQzM,619
|
|
156
|
+
autogen/agentchat/realtime/experimental/audio_observer.py,sha256=ayx96nB1iuUVu3E-AIBunPu7iUf3r-0GCrwKAnRtRw4,1312
|
|
157
|
+
autogen/agentchat/realtime/experimental/function_observer.py,sha256=M0cXXJNoBQ8sAZGiju3emG5PaohszEq_h8bNDXLBrAc,3172
|
|
158
|
+
autogen/agentchat/realtime/experimental/realtime_agent.py,sha256=nOoucthiFExlASuUEgg5uHme-TlxuESr1Wh1BPhbCoc,5687
|
|
159
|
+
autogen/agentchat/realtime/experimental/realtime_events.py,sha256=zmRr3pwPJpme5VZEADIz5vg9IZoT3Z1NAc3vt1RdWLk,1083
|
|
160
|
+
autogen/agentchat/realtime/experimental/realtime_observer.py,sha256=Y_UULA9CgxqKZo9dgBds0iipjx7cZ9MghrH4HcKd57o,3045
|
|
161
|
+
autogen/agentchat/realtime/experimental/realtime_swarm.py,sha256=l8P95l0k2tfOzJVSH2eQtSlY-ARtnJ4R4H3Oz1eIjvw,17741
|
|
162
|
+
autogen/agentchat/realtime/experimental/websockets.py,sha256=bj9b5eq80L3KlGWPP6nn7uyfT_Z47kQqtIRbQkeE5SI,667
|
|
163
|
+
autogen/agentchat/realtime/experimental/audio_adapters/__init__.py,sha256=rd0pEy91LYq0JMvIk8Fv7ZKIQLK7oZbVdgVAwNZDCmQ,315
|
|
164
|
+
autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py,sha256=jBr5I3j6Z2jF6J-PNTvvAW24L0NvJpCul4M_fVP4S-g,6091
|
|
165
|
+
autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py,sha256=_TCzjhLJWLEDQ1jD2qHRyVB2T4lGfKEDtqxfvrIAYRs,5916
|
|
166
|
+
autogen/agentchat/realtime/experimental/clients/__init__.py,sha256=mLQaJUrmJ2PNlFPMf02F5HRsuEP-DV_-5vQPLaNgRnQ,443
|
|
167
|
+
autogen/agentchat/realtime/experimental/clients/realtime_client.py,sha256=qCHuSE7cQy7Dh-rU7rFrvVTLLzCkBPfaKqeFFtDpbHA,6105
|
|
168
|
+
autogen/agentchat/realtime/experimental/clients/gemini/__init__.py,sha256=OsuUiSPrD_-y67rL1wYsPHd0YUnvrGJ7TX_GUZZDB1A,221
|
|
169
|
+
autogen/agentchat/realtime/experimental/clients/gemini/client.py,sha256=UynugAQ-RD2eE15muVjxPRzD4Y7ROPCNj3e6VspKzTQ,10166
|
|
170
|
+
autogen/agentchat/realtime/experimental/clients/oai/__init__.py,sha256=NMVpiwIA3mcC2l69GSivt2MW4lFJeTaAGyEbhhNgpNs,307
|
|
171
|
+
autogen/agentchat/realtime/experimental/clients/oai/base_client.py,sha256=mzZoNDsWsYheiYMRowrV522wwEp79uFoaAEx_gCotbY,8424
|
|
172
|
+
autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py,sha256=Tx01EFCFgDmHi3weLSaS3XzXdPNBrrd3Hude60fROfw,9543
|
|
173
|
+
autogen/agentchat/realtime/experimental/clients/oai/utils.py,sha256=_6PsHZNBZXLM_GWadOwNvjjBsz4is0Np45AnySAkzy0,1604
|
|
174
|
+
autogen/agentchat/realtime_agent/__init__.py,sha256=Jr5mEWi_yCGfLxhxRi7RrcLzPIvTqDz3w5w7QWozCl4,479
|
|
175
|
+
autogen/agents/__init__.py,sha256=c8B9TpO07x9neD0zsJWj6AaEdlcP-WvxrvVOGWLtamk,143
|
|
176
|
+
autogen/agents/contrib/__init__.py,sha256=t0jzf-1c9vY5T5MHGgdHKECtacrmmzVFg1Oe-C_-QVI,250
|
|
177
|
+
autogen/agents/contrib/time/__init__.py,sha256=cvJIRqbF6x-ZszrPDOzUJI30BOcEWPrmOyBQvHvWrc0,279
|
|
178
|
+
autogen/agents/contrib/time/time_reply_agent.py,sha256=kxGoY04lFVnaRFVNV09ZMYfpe5ANdWyRlhX4Q5m5M38,3155
|
|
179
|
+
autogen/agents/contrib/time/time_tool_agent.py,sha256=fvWsiSKyz2vpcR1wtf1wo7DZps1CKt5ienNff7rksN8,2137
|
|
180
|
+
autogen/agents/experimental/__init__.py,sha256=SSqBqSHvUE52HXhtLThTWo4TPeQDHlw9bD--iampi4o,805
|
|
181
|
+
autogen/agents/experimental/deep_research/__init__.py,sha256=sEo1hXnAVyRQFzdfCfNPyQpwuMjxO06XgFXfRqymFhE,222
|
|
182
|
+
autogen/agents/experimental/deep_research/deep_research.py,sha256=h85ywezEGj53HotsGtaNxKaR3bC7DByx3oSKDPm_HV4,1738
|
|
183
|
+
autogen/agents/experimental/discord/__init__.py,sha256=u9uCviCbFRJ6xp87RI3WamDFNwUwGIHSnG9J39ioQ5c,206
|
|
184
|
+
autogen/agents/experimental/discord/discord.py,sha256=7mvk_z-zpng7iSZcScRjML_yNCxe0RzRdlqc_cGLRuw,2692
|
|
185
|
+
autogen/agents/experimental/document_agent/__init__.py,sha256=YNuO2YqxckrfAxcmRcI5JmiE7w52lkyVdLyvWxmbSUw,603
|
|
186
|
+
autogen/agents/experimental/document_agent/chroma_query_engine.py,sha256=Oho1DctvUdvObxLsCXsWK65jHygIZmDFETYisN1KgjY,13679
|
|
187
|
+
autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py,sha256=P2yJrS2uYWBYp2D_DryW9waBaCh2iasnWW4ZarQwuVA,4984
|
|
188
|
+
autogen/agents/experimental/document_agent/document_agent.py,sha256=QRYs4jPknFD20_iJOIa8NR8hSNCDY6YoO6DOi1Zig8E,29531
|
|
189
|
+
autogen/agents/experimental/document_agent/document_conditions.py,sha256=5NOv_cAPWzL4PTu3IAGhGNg_EveEOhKH1uZ8M5mfsq8,2045
|
|
190
|
+
autogen/agents/experimental/document_agent/document_utils.py,sha256=5wR3B9NrFqwyLMhOm878SsXuLKMIMgcd5LlKyOCRPtE,14030
|
|
191
|
+
autogen/agents/experimental/document_agent/inmemory_query_engine.py,sha256=nzWFyHBd7buldVsOHYfo5WAMMEnmCnEoMnP3VkCFCVg,8858
|
|
192
|
+
autogen/agents/experimental/document_agent/parser_utils.py,sha256=vc7pFltHMpbAplqJvo-3Uqzmd9MvTmF4_mTZTko2HRM,5364
|
|
193
|
+
autogen/agents/experimental/document_agent/url_utils.py,sha256=imZriD7hXujPzlfQ2IbA0PQsBl-hj4QlQEFu-0yyY7M,15771
|
|
194
|
+
autogen/agents/experimental/reasoning/__init__.py,sha256=7sNWA9-cLr4F5NgS_0ykhAShA-YYwtbh0uJiPXPHJBM,242
|
|
195
|
+
autogen/agents/experimental/reasoning/reasoning_agent.py,sha256=GwETTEHSilVGIvpcBLWFIbstJnAgDMZPedhVbsWMMyA,50987
|
|
196
|
+
autogen/agents/experimental/slack/__init__.py,sha256=PHPU684QTDEgiZZYA6v7Immgr9gaN4rfNN4W12DZ1pY,200
|
|
197
|
+
autogen/agents/experimental/slack/slack.py,sha256=xjAoexK2BFGvDaoVgu0qO5csiGcPmYCRlt6cbjIzdyY,3090
|
|
198
|
+
autogen/agents/experimental/telegram/__init__.py,sha256=Y-HQJXmeux9QVY-Jjy22WO8cPWryxwaKEbhcypdUImY,209
|
|
199
|
+
autogen/agents/experimental/telegram/telegram.py,sha256=p53n_1T3DNiWTrigLEnAY5SJom5yzvysxR75qfgjCvI,3083
|
|
200
|
+
autogen/agents/experimental/websurfer/__init__.py,sha256=I3D0sIBDW9zxSOM0wNXdFfMZQIpiutet-9ikrm0WD0s,212
|
|
201
|
+
autogen/agents/experimental/websurfer/websurfer.py,sha256=3WWfk9P-u42kKVXV91FoDDd7aHnZsObRNU1Wtf2UMWI,2870
|
|
202
|
+
autogen/agents/experimental/wikipedia/__init__.py,sha256=ytX_85hqagdyl3I72kYQM2-3bR7rG_SI5cyx8pKSG2I,212
|
|
203
|
+
autogen/agents/experimental/wikipedia/wikipedia.py,sha256=emfDKajdCHMtZBZQN6FLd1MvbPahVW5i7KjnzCpsceE,3893
|
|
204
|
+
autogen/cache/__init__.py,sha256=HF7qJyJpzqTYXSwUyVUxAFTY0eakw5OFwhyg_KO3QwE,375
|
|
205
|
+
autogen/cache/abstract_cache_base.py,sha256=p_hPn8xU6JHiMFp5zN8TjC6c1S4D277dqwtEzw1SqwY,2417
|
|
206
|
+
autogen/cache/cache.py,sha256=6t9XWfjB7liZ1FggKBJLWp3hqsV9X67w27_mpkTKgLY,7505
|
|
207
|
+
autogen/cache/cache_factory.py,sha256=ocfWn-jAyRIIliCHNjfNgec6sFd9VEc3MwcJm2LK-PA,3232
|
|
208
|
+
autogen/cache/cosmos_db_cache.py,sha256=C1CzTSwlmrYgmj_8_d92sbtgtg3Cwbrc3Bka819GwP0,5682
|
|
209
|
+
autogen/cache/disk_cache.py,sha256=TRqbg0tRkB5FQh0fWs7LolmOZdbJUBi3A8H23XuBl7U,3293
|
|
210
|
+
autogen/cache/in_memory_cache.py,sha256=wgMvHM83-UrLGBc8I9wZYYPEW9FzGwtySXuQZ1XXwkg,1814
|
|
211
|
+
autogen/cache/redis_cache.py,sha256=GLT_4WGkTF4ColwInm8uVjdltiVdTegZmejAiKDdNKw,4210
|
|
212
|
+
autogen/coding/__init__.py,sha256=fN8UCm3RzJZ4OFMwlp3a0jic0ZzOege6TNVAk5t6J0U,825
|
|
213
|
+
autogen/coding/base.py,sha256=C4W7XlZeSEWw9L2J_ASjBy9_sDTGTiH9QUncprxImH8,3749
|
|
214
|
+
autogen/coding/docker_commandline_code_executor.py,sha256=toGbNTsOD4qCdcO7mquJu99e0EKz7LWTm81tUwBMGQI,10819
|
|
215
|
+
autogen/coding/factory.py,sha256=bC3kkIBNExAPt8KZvCQ1PsLpyJWLq1jpw1JcvIbKR04,1978
|
|
216
|
+
autogen/coding/func_with_reqs.py,sha256=bAy9jqm4XO7yOxLa_psMe7H35e9mllujiGkkB49AOoo,6371
|
|
217
|
+
autogen/coding/local_commandline_code_executor.py,sha256=MbiO1x5cx0BMdQWDex7xvPncFlZxF_rL3Eh0VAnq8Ys,16656
|
|
218
|
+
autogen/coding/markdown_code_extractor.py,sha256=G3MAQ6RGRHgLL9EZtTCXQsbxWxGqa_ffyzJ6vNhA7Zc,1614
|
|
219
|
+
autogen/coding/utils.py,sha256=Rx-5b94WK25EVHhekWtx_QJpni-RUUL9xiXdPF096Jw,2067
|
|
220
|
+
autogen/coding/jupyter/__init__.py,sha256=HsXcVgN_gS2CO0XzeKidjxpipCgV8Dt0zXpK7Q4lArs,830
|
|
221
|
+
autogen/coding/jupyter/base.py,sha256=yd-hc7tUsOSH9MZDLzQKYFIVRQegJIhvVt3_LH8B6uU,1133
|
|
222
|
+
autogen/coding/jupyter/docker_jupyter_server.py,sha256=3TnjJ_06l5GwMGB6zMBzlwSZAQVShwrlr2R9HXuBv5o,5829
|
|
223
|
+
autogen/coding/jupyter/embedded_ipython_code_executor.py,sha256=qaMpoRzUTxMocL9riooItgosw80AMpyCzSzybyfTbBU,8116
|
|
224
|
+
autogen/coding/jupyter/import_utils.py,sha256=0iKtimTor8vtdRYItFBnK8La4xR8zw8voAsjB5I96_Y,2621
|
|
225
|
+
autogen/coding/jupyter/jupyter_client.py,sha256=8BjgCYCrDUXUNuLvy_6ACXZLHolKWd5JDL_cWt1OB-M,8643
|
|
226
|
+
autogen/coding/jupyter/jupyter_code_executor.py,sha256=2liO5K-KYtYVhSzY4475ZHE-5HqGA9DmRkhnqb2uicE,6318
|
|
227
|
+
autogen/coding/jupyter/local_jupyter_server.py,sha256=N7DUXAIDHSg7JHWDowibAf1OJOvtzocQMECbcs6Ijx0,6311
|
|
228
|
+
autogen/environments/__init__.py,sha256=SNh4NFcBgySNW--H1YUZPEf7F7QLpBQA3Qc8EvyM-gk,488
|
|
229
|
+
autogen/environments/docker_python_environment.py,sha256=WfmrBYggN3S1ZuQ57_bDi6CZKtXYCstIHzAMfhxAF38,14872
|
|
230
|
+
autogen/environments/python_environment.py,sha256=iHFErf9_AYaeb436azCXEZsM02q2fCvEfWtaN4AXJM0,4184
|
|
231
|
+
autogen/environments/system_python_environment.py,sha256=F8P8b4d1TNiO-2MqE9cbifmulOI0UhpbcIE8Wu6V5QI,3059
|
|
232
|
+
autogen/environments/venv_python_environment.py,sha256=EL43nw-nS_AnSvpZPCmjLnZVU1JDX0gQgu6cgJnXtcY,9907
|
|
233
|
+
autogen/environments/working_directory.py,sha256=3Z_gj-fPpn8qdAq1K8jF-Wydh56E3bjFQZGiugxJv5c,2496
|
|
234
|
+
autogen/events/__init__.py,sha256=XwCA6Rsq9AyjgeecGuiwHcAvDQMmKXgGomw5iLDIU5Q,358
|
|
235
|
+
autogen/events/agent_events.py,sha256=q45aPoX7LS5h4JhJVv8gEIHKhIow0tlIYrPtNpiqcTI,30727
|
|
236
|
+
autogen/events/base_event.py,sha256=_vEyks9XuNZ0-HfdCiDlan_HhnOMDeqCNvy6TEfnucM,3498
|
|
237
|
+
autogen/events/client_events.py,sha256=pFYsIHvHct7woOiL7kQMDMnbIefI6AfpoHv1vYTZEBU,5431
|
|
238
|
+
autogen/events/helpers.py,sha256=Wd6KGhCwR0A7VT98z1Jeu9STNPB5x4aqXJxfFeE0R9A,1537
|
|
239
|
+
autogen/events/print_event.py,sha256=8nDbCvVd4zFJBGHLIeyFHzV0uFmLTnLNIRJouduWxs0,1272
|
|
240
|
+
autogen/extensions/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
241
|
+
autogen/fast_depends/__init__.py,sha256=4KNQsBQmoDf5RIZsnOuMFy7t6-Y1hnKjIplGdbo_k8Y,465
|
|
242
|
+
autogen/fast_depends/_compat.py,sha256=HT9xOra8FkBHoH5VuSA7bFyFjVx2rT_U7cW7MTblbSw,2539
|
|
243
|
+
autogen/fast_depends/py.typed,sha256=T2j_zfU4zutMBbYt-DnEWSdP7XjLdaS9Tqt5z8VXUgg,288
|
|
244
|
+
autogen/fast_depends/schema.py,sha256=AWXjT2-7oguZPZpLIH_XtA7Ak7tafOyTexFzTCICfxE,1911
|
|
245
|
+
autogen/fast_depends/use.py,sha256=UFiB4Y9GH_NcbdWSuEtYKaAkWXFfp2rcJwIjO0AoT7g,7818
|
|
246
|
+
autogen/fast_depends/utils.py,sha256=11cFQbaDwrHot0KI8ORIquulH-VrFfJQN8xfkqXtd30,5197
|
|
247
|
+
autogen/fast_depends/core/__init__.py,sha256=qegYjQCufCOBWZT210C9xXtjmkdiWluVjSF3q26sdSg,410
|
|
248
|
+
autogen/fast_depends/core/build.py,sha256=GoAXYsRAYREBcVy1s6zCCOXuD9jWZ1ef4Mg2UNmeH1Y,7060
|
|
249
|
+
autogen/fast_depends/core/model.py,sha256=d3XfgOHi-xXXL5E8gHvnnkp0Il2pN8Fv5HF75cB8HIE,16098
|
|
250
|
+
autogen/fast_depends/dependencies/__init__.py,sha256=qoiZscVbv-YWci0ZHjhIA3mAnP5AKCwtnQU-r5AY3LY,441
|
|
251
|
+
autogen/fast_depends/dependencies/model.py,sha256=3NvedTqkXNYgD2LzgX19jJ6L6Odpptx8swmluzZevfQ,893
|
|
252
|
+
autogen/fast_depends/dependencies/provider.py,sha256=hygLtjtQaerrpcLRuPM9O3yB1l4jduzmaZfYQOVj_pk,1115
|
|
253
|
+
autogen/fast_depends/library/__init__.py,sha256=N4Qse-hGFWumWIowm4N0omd3Qqa15GmP5dzav9oKwNc,348
|
|
254
|
+
autogen/fast_depends/library/model.py,sha256=Ag9VLYLdZr2KLI33UUCh76n5iQJc-ARoAIMJmNNQoa8,1202
|
|
255
|
+
autogen/interop/__init__.py,sha256=c80dCkG4qyQFk-sE_gxVrxNNoVnbzxmglg7-t3Ut_fU,750
|
|
256
|
+
autogen/interop/interoperability.py,sha256=w7j3fKJZB9kQdIjIJnywe1pvtbdXNz1of9RY2Ny8ECQ,2578
|
|
257
|
+
autogen/interop/interoperable.py,sha256=8PxfGdTKhPyibIqZ8ekdp8YLOhSjW8_64l6JHuhLW-o,1473
|
|
258
|
+
autogen/interop/registry.py,sha256=k-BzCybDHZh1ywMS4OdfyWWMsBYaRzk1geZUYAmPm08,2149
|
|
259
|
+
autogen/interop/crewai/__init__.py,sha256=goeDZTI1PlxNwsLfZWvJMYSUjmsMaJwAPTI6gAHmuyk,225
|
|
260
|
+
autogen/interop/crewai/crewai.py,sha256=hhwg4Y9nhFsDrnbCWIOXSKj4eM_cmYSiDb5oGBEzvIw,3230
|
|
261
|
+
autogen/interop/langchain/__init__.py,sha256=8v-kdg4ImQ1Udzd8Y6r7DTvd760SgWkwNKz6NmII41U,336
|
|
262
|
+
autogen/interop/langchain/langchain_chat_model_factory.py,sha256=cPe1--5BPQVb6mQxfSKY3P1UIvfGGPsJjwWUP0JIYoA,5605
|
|
263
|
+
autogen/interop/langchain/langchain_tool.py,sha256=KOlCvor9tQfx6BILC9O1Qmo4SS4XEdl--4ygOF_K3Vk,2981
|
|
264
|
+
autogen/interop/litellm/__init__.py,sha256=0K9NkQEBXKZI6UVNwD4daTumQL-uhMrAJE33wiSYmkI,237
|
|
265
|
+
autogen/interop/litellm/litellm_config_factory.py,sha256=JuxNRMM4HwYebmOfs-jnH1Cf5uD3SM968pyVtW_49Cw,6272
|
|
266
|
+
autogen/interop/pydantic_ai/__init__.py,sha256=w9tqh96x43Ipq2loD_F-kqwws2RFRs7-98mPxWG-Mjc,238
|
|
267
|
+
autogen/interop/pydantic_ai/pydantic_ai.py,sha256=7oHLTJXKbqWwP9CEg40ii1ktwhTvX0tSdOfyQAg5kMM,6553
|
|
268
|
+
autogen/io/__init__.py,sha256=c5iZkM24B9j3K0yPQ0HYJnvAdNMqhlRZVXqcfdnGFX4,600
|
|
269
|
+
autogen/io/base.py,sha256=yBFUwpZxOFa4F5_dv4ZWoN8iiEy3oH6xgWoo-TK-bg0,4705
|
|
270
|
+
autogen/io/console.py,sha256=6dYGWntAMgbVX2An14pcs5YyusFsUGeF_-tgR5IMOC0,1892
|
|
271
|
+
autogen/io/run_response.py,sha256=QCmUaGbQtagftvTDAdI-mMRndmjboyodrKyZEWAzDyo,9643
|
|
272
|
+
autogen/io/thread_io_stream.py,sha256=iSYyImEOtUHACpRIt561Xu6UL5isUkBL8YUG49QPlYQ,2307
|
|
273
|
+
autogen/io/websockets.py,sha256=aatW-lzL7uuoBS8CDbTJ_YZqPH-QhczjSG2dcJsShoQ,7466
|
|
274
|
+
autogen/io/processors/__init__.py,sha256=8-znkWyHiESpMktD4cU_id-HPLE7JD7gArj0y-7K7dM,443
|
|
275
|
+
autogen/io/processors/base.py,sha256=60oltHFRWIjZsxzzzK5evPx1M-H0lHZVNVkmItiTNSQ,685
|
|
276
|
+
autogen/io/processors/console_event_processor.py,sha256=Z9xs4Qiq49Cxj1YbPPlrCgZ8KExQE3xqat7heLlZUOk,2103
|
|
277
|
+
autogen/llm_config/__init__.py,sha256=P_jAlr_bz-xr8P0eLeUJ9aF7ruNW3bQ1b1d6lfaYP68,257
|
|
278
|
+
autogen/llm_config/client.py,sha256=Ig5C2e9N37H9NutB0CThOViMUK99wFWfGw19lg_783k,2424
|
|
279
|
+
autogen/llm_config/config.py,sha256=dz5ybJubdnZwDF1JZM1YDTAC6Muc1vJWa8fgs_PkzLw,13888
|
|
280
|
+
autogen/llm_config/entry.py,sha256=UN0bmJM0Rz2k9_1tqilMj2bQTjq9L5tuyjXoavk7mZg,5893
|
|
281
|
+
autogen/logger/__init__.py,sha256=TTBS92VspksnTQzlMQcCBd-NzYc5UQ1DCrzO4aNvwO4,442
|
|
282
|
+
autogen/logger/base_logger.py,sha256=RWN-ilxJJrq-IxqKlyx2B6QnxgMhEoBPq-vonGMHDO8,5051
|
|
283
|
+
autogen/logger/file_logger.py,sha256=SPo0HIjrdi1gBOUxSWnx-iPLUvQndak-RUFEtT2Q9sU,9823
|
|
284
|
+
autogen/logger/logger_factory.py,sha256=jXtkqJZz-ioBovulCVlPmd3imIJID4p0Iy66wapeuYs,1378
|
|
285
|
+
autogen/logger/logger_utils.py,sha256=QpxOeUAqJpkrhnZQofpGRU7ZJLVRM2ZRJtrN_p42UMM,2046
|
|
286
|
+
autogen/logger/sqlite_logger.py,sha256=1gTPgTgwd8s9DGj_xwOG8HLhrp_AqJeq5LGwhdLKNKo,18721
|
|
287
|
+
autogen/mcp/__init__.py,sha256=6BDDmw0sjLZRjyHnd-Gfh9BE-pTKTv5bkow9W6odHtQ,213
|
|
288
|
+
autogen/mcp/__main__.py,sha256=p0c3oJp-cDDtOjbX4OzOCZe4uaH0algsaQ2h8dVYEVc,2462
|
|
289
|
+
autogen/mcp/helpers.py,sha256=0iqNUQbuzr0y1Y26z6f--6DAmVLrTCTHyCjVXu_eZS0,1519
|
|
290
|
+
autogen/mcp/mcp_client.py,sha256=DfENyLe71SoBj2HWBNlSswbLcDnH_4FwICnFOhINVRM,12966
|
|
291
|
+
autogen/mcp/mcp_proxy/__init__.py,sha256=3HTU-TqHLk4XSXeBV1UFd9XkQ1B0yOuXXyGseXvDVec,518
|
|
292
|
+
autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py,sha256=3gAzyMnXO_VpsQpbZC4di4dPJgaj57vfyXOgsNbAGVQ,2063
|
|
293
|
+
autogen/mcp/mcp_proxy/mcp_proxy.py,sha256=aTpxWANITY6ppRZYUDVMcbRnE99V-K8u6Z5NKI0XKr4,22025
|
|
294
|
+
autogen/mcp/mcp_proxy/operation_grouping.py,sha256=Ti1b7S4nvLBr8YRjrLH7d4xIMArHRmASiOJS858te6E,6319
|
|
295
|
+
autogen/mcp/mcp_proxy/operation_renaming.py,sha256=4tu-SRgPaUhUBRwp0hDIeQG6X0IKIvavsmuD0zwSJsc,3911
|
|
296
|
+
autogen/mcp/mcp_proxy/patch_fastapi_code_generator.py,sha256=vBr8P890nsFvK4iuFicrdNskooHlBQeTQ6jbb5kcPAk,3490
|
|
297
|
+
autogen/mcp/mcp_proxy/security.py,sha256=KHbauSc9roMUUWYi9SFCcMOv7ZVdXqTAJhjOr5Lcf5Y,13569
|
|
298
|
+
autogen/mcp/mcp_proxy/security_schema_visitor.py,sha256=UafLMd5zcz0COcc5Vfvt6bP3LQ3jmaBwQIlWhovN9H4,1345
|
|
299
|
+
autogen/messages/__init__.py,sha256=ZuLvvIQRkNE5fotPe6MSS_YzOUkmfIqGSfOZZOZQ3go,321
|
|
300
|
+
autogen/messages/agent_messages.py,sha256=yilDoPNPyJp-yro0Y0tUc6u6bO8c_wZiTwSXiiA22q0,30098
|
|
301
|
+
autogen/messages/base_message.py,sha256=EkxwAL7A1IaPV_YghtWi7rKgtATE5Geh4SF4MTzw38k,3831
|
|
302
|
+
autogen/messages/client_messages.py,sha256=XibofBVAge0HscVBE-WLJ00IPNN9Ue-j7KESB-q5dDs,5618
|
|
303
|
+
autogen/messages/print_message.py,sha256=XoAAOh08MiFBX82OLylweJSlba6Rj1DYfdHRmEMVDbs,1390
|
|
304
|
+
autogen/oai/__init__.py,sha256=k4GSf7zvdyamX1Lix7n1_d7UHReVkaWzrBCptuWtzsY,1648
|
|
305
|
+
autogen/oai/anthropic.py,sha256=rstyTbGn9lSjpRUxNZWTwkx5qvjgRpf98PJg8CQgOuc,29230
|
|
306
|
+
autogen/oai/bedrock.py,sha256=Og2Zq9NoaAl7pDKTLnrobXFZoFH8qlgMA2umx2CNyZw,26316
|
|
307
|
+
autogen/oai/cerebras.py,sha256=emRF_2xy3gakapyEHYKvZEDvvALFR9AaBK9JeQpH1Tk,12350
|
|
308
|
+
autogen/oai/client.py,sha256=jXO_hv8icdRqPC5bN9zkD812dYz-eV2TIB3VTPdjo38,66992
|
|
309
|
+
autogen/oai/client_utils.py,sha256=3TD270S7VqnPzlMQoLtFs-Eib9wutJpVsHrB55oeK2A,7521
|
|
310
|
+
autogen/oai/cohere.py,sha256=tfnfHKTVtfpRO6fwsGNt07v_QN4zFO6Ej2UQaxhcJAQ,20015
|
|
311
|
+
autogen/oai/gemini.py,sha256=ymFIBj-RujG8aA1rogcBZ0nkUJiP-qatd1e1zshDSjk,43857
|
|
312
|
+
autogen/oai/gemini_types.py,sha256=yS_a8tjFWCPcqiyKLAyC-2ftt0HX3E6rl2tztRcyg50,5833
|
|
313
|
+
autogen/oai/groq.py,sha256=J9YlpiYbKGOl5zsoInLdZfbFQqCUVXAAS666BRvkw48,12621
|
|
314
|
+
autogen/oai/mistral.py,sha256=FuyR-3UxuQ9wo3TMaifQERMgktO_eFQMg7fOHWrmBVA,12808
|
|
315
|
+
autogen/oai/ollama.py,sha256=xIt-GX5Jz_Tp9qEMLI4K4qq4V5_HOuX5NQPZltpKTmo,29369
|
|
316
|
+
autogen/oai/openai_responses.py,sha256=Tid-4LTnIXrWj0mHtsMtv7SiwP-I-iKURrwrIKo2QAg,18997
|
|
317
|
+
autogen/oai/openai_utils.py,sha256=WwIdlTpr6R_Aajhw4Lbk3OCAgkfQbGGxGgJ8YTSW9DU,41566
|
|
318
|
+
autogen/oai/together.py,sha256=-1-cOF0Wmx8er0FmcabBZ7IfuSqC8YdSSYmHc3uFDEk,15208
|
|
319
|
+
autogen/oai/oai_models/__init__.py,sha256=_ofxopODDnpu9DDqRpPnXNYcgY9mV4X3xwnBikd7HC0,753
|
|
320
|
+
autogen/oai/oai_models/_models.py,sha256=W6uxF_wHcEYoSbaWS4IFwrC0ahKADOqeu2PNjknybYM,418
|
|
321
|
+
autogen/oai/oai_models/chat_completion.py,sha256=zO601eGmU18dPQfWwCeZnQsZR5vfuVTqm0N9U1_Odvc,3151
|
|
322
|
+
autogen/oai/oai_models/chat_completion_audio.py,sha256=a55i5E1EnT8qWdiKxbwF2kmgt4fih6x6HaChjs0ZuZE,950
|
|
323
|
+
autogen/oai/oai_models/chat_completion_message.py,sha256=60C32Bj4UIGfCzO8CU8VrtrdK6kT7KjT-vgVBzVFAok,2849
|
|
324
|
+
autogen/oai/oai_models/chat_completion_message_tool_call.py,sha256=L0SzWLQq7MWW4hykArAuyZS_Tqz_AFuj18YKBQmYI_k,1771
|
|
325
|
+
autogen/oai/oai_models/chat_completion_token_logprob.py,sha256=gC5o8BgScmAn9mBkCdWPgs4G6Es7xWp3spJC5aOxGCs,2031
|
|
326
|
+
autogen/oai/oai_models/completion_usage.py,sha256=-37tfKln6QO-fwC4Smo_mxnjOiNrM_K1Ck26WHhvIP0,1968
|
|
327
|
+
autogen/tools/__init__.py,sha256=guevGJut7uN2pGpPn9mODaVsTSfeHrGpjjjIEWRBqVo,554
|
|
328
|
+
autogen/tools/dependency_injection.py,sha256=hGU352pcjJycl87B9g-GCRkAKnXWszPU5OH9yWA-dR0,8457
|
|
329
|
+
autogen/tools/function_utils.py,sha256=9d0ZRu8yo-Ka5Nn-Ud0AaSGqb6znTo9ZnM8UCaJ8da8,13713
|
|
330
|
+
autogen/tools/tool.py,sha256=5Z7N4DWF9A2J3yvnG8porlRc0AAdamPJnLr3E5M2BiQ,7245
|
|
331
|
+
autogen/tools/toolkit.py,sha256=1tOmTGJ96RhkJrrtAViKUyEcwacA6ztoIbYbnf8NgTU,2558
|
|
332
|
+
autogen/tools/contrib/__init__.py,sha256=DWEjPK6xCR2ihAXXdquQZmiuqRLA3Pqb8QV8W1RtS3k,202
|
|
333
|
+
autogen/tools/contrib/time/__init__.py,sha256=dplie5aBJZ8VoKy6EKcQMLTtSgcCkNDYzpdsC2I0YWk,195
|
|
334
|
+
autogen/tools/contrib/time/time.py,sha256=mqE6LFfwF9C_S474nG8INmz4mxnMg18DADpnykqQLrQ,1270
|
|
335
|
+
autogen/tools/experimental/__init__.py,sha256=OPJlrK_tJCPbeBT-qsIWwJBdLuaCMskpshduA8Haj7E,1671
|
|
336
|
+
autogen/tools/experimental/browser_use/__init__.py,sha256=kfxCajXcVMDH6CZq-lWh2p8PKxOwT9yjC_Za0jr4zUg,290
|
|
337
|
+
autogen/tools/experimental/browser_use/browser_use.py,sha256=ty6jIy8Yeb8lSakgRGBW4AZUPcBBcFeSxgz-n4ejNqs,5515
|
|
338
|
+
autogen/tools/experimental/code_execution/__init__.py,sha256=KFUku2awEgsnkSa48t2iMMPC-QCxpqAG7lb8fB4Fr-c,242
|
|
339
|
+
autogen/tools/experimental/code_execution/python_code_execution.py,sha256=zxeBZfU0SM7yQxdbqV63NdZPfoFev2avcxdE_XofeIg,3667
|
|
340
|
+
autogen/tools/experimental/crawl4ai/__init__.py,sha256=UjFJLSZ9P5xT6WCV0RDPtwt4MHuwPdK90TU7ByXhLWs,207
|
|
341
|
+
autogen/tools/experimental/crawl4ai/crawl4ai.py,sha256=i3ixm1I3GqDIMHN5fsO9g2TnZwXQJ-j0rD9MMKX5zss,6026
|
|
342
|
+
autogen/tools/experimental/deep_research/__init__.py,sha256=9SFcDEj2OHxNSlXP11lf1uHENlfUeO47ROcOSD9GCDs,220
|
|
343
|
+
autogen/tools/experimental/deep_research/deep_research.py,sha256=HfnNow6ZC2dIw5Lh0vdmSpyVFAJkJHD-c_Dau-cYt_I,14948
|
|
344
|
+
autogen/tools/experimental/duckduckgo/__init__.py,sha256=hstpKQfvd5YD7X0iMuvJFlui3MtJVGbz5XpkOSaoy18,232
|
|
345
|
+
autogen/tools/experimental/duckduckgo/duckduckgo_search.py,sha256=_rMd-v5OqGe9lIuJgs-y_Z9wRgoDtZnPrD0W82mz27U,3486
|
|
346
|
+
autogen/tools/experimental/firecrawl/__init__.py,sha256=L-_y07Pzq4TeIIIoYce-catqiZI8f1UAAQpUoL-iYmA,215
|
|
347
|
+
autogen/tools/experimental/firecrawl/firecrawl_tool.py,sha256=UQ9YQoVcB4NDiPUMxFG2yCG37Pcaks43g1MQbCrLAw0,34411
|
|
348
|
+
autogen/tools/experimental/google/__init__.py,sha256=_j5i9rzajzilQetKCPh5QkX60p1iOri2Yw69zIKAdU0,461
|
|
349
|
+
autogen/tools/experimental/google/model.py,sha256=hm3ynXSJAjeld85iSHo9QgIehoWEqeVhbSPC3EaHm0M,515
|
|
350
|
+
autogen/tools/experimental/google/toolkit_protocol.py,sha256=Jg9aSy4sKDr-yYVxevYr7zbEcmA9EwFWrJBOogLfKJU,485
|
|
351
|
+
autogen/tools/experimental/google/authentication/__init__.py,sha256=9xmOghr2lpxrh7yNOyISFP3z2ZoL4kN0lzBDoMzyglE,361
|
|
352
|
+
autogen/tools/experimental/google/authentication/credentials_hosted_provider.py,sha256=LdMhmMGqCcgQNsw3xeteSwTlKp-UkTWJJLUxJx7lewA,1268
|
|
353
|
+
autogen/tools/experimental/google/authentication/credentials_local_provider.py,sha256=0bpubEDXH-zO2KI2gfvOc1umcL1ykrESnPiecXOPfWk,3354
|
|
354
|
+
autogen/tools/experimental/google/authentication/credentials_provider.py,sha256=mQZx7tDn8FzV0U31Nf27tjTjgFK8x8MxK67i_sG8e28,980
|
|
355
|
+
autogen/tools/experimental/google/drive/__init__.py,sha256=UlZiMgZD5xKj1rou3iS9qHAprkqhJMWpESJmLFT8HXE,225
|
|
356
|
+
autogen/tools/experimental/google/drive/drive_functions.py,sha256=i0VAkHEbQSdm9VjsYDqyR96LqpJpUawkRbZcqPNBXls,4478
|
|
357
|
+
autogen/tools/experimental/google/drive/toolkit.py,sha256=9BzwUM6w5jYxDYTOjawCxzPdQR96RKsOYlbcvrDGQHQ,3382
|
|
358
|
+
autogen/tools/experimental/google_search/__init__.py,sha256=_4eCvmps86qChxDfPw-R9I6-05xKFtYMX-mww8-OhZE,287
|
|
359
|
+
autogen/tools/experimental/google_search/google_search.py,sha256=nfXxg-6wPIrxMENeHOD73IcRWm8hlRDp9QV0otWiZFM,3835
|
|
360
|
+
autogen/tools/experimental/google_search/youtube_search.py,sha256=obuI00bscufv61CpqnjtJ4_hjNRQ_J435O0Ct48ts6Y,6361
|
|
361
|
+
autogen/tools/experimental/messageplatform/__init__.py,sha256=R_DBu-edxl8iDJSUVsByqiNVgPZzKB5qJERQ8KLknrI,536
|
|
362
|
+
autogen/tools/experimental/messageplatform/discord/__init__.py,sha256=QUdlQ_qOpLv_78txQyTURRw86GcLrYI7UwQU-5aoxK4,256
|
|
363
|
+
autogen/tools/experimental/messageplatform/discord/discord.py,sha256=stcHuUOKPsTzbQUcukn7etpDMDr1A1fz3kVt-vrimUY,12358
|
|
364
|
+
autogen/tools/experimental/messageplatform/slack/__init__.py,sha256=LzsMMPw-_K1kt8L17js0sSematFF8GfX4h-aI6jKB0k,300
|
|
365
|
+
autogen/tools/experimental/messageplatform/slack/slack.py,sha256=smmbgnVBoeL8IUFRia7IQehszPAFBaeiizQHmqrr050,18708
|
|
366
|
+
autogen/tools/experimental/messageplatform/telegram/__init__.py,sha256=gPhyMHRvuCn3s2j6b9UFEte0yCC2gFYgTiVHTBrM4dc,261
|
|
367
|
+
autogen/tools/experimental/messageplatform/telegram/telegram.py,sha256=DKdYlsbE-maHVHAEI6Yd2aoblJo4-WzdyVMb6E6lMPE,12264
|
|
368
|
+
autogen/tools/experimental/perplexity/__init__.py,sha256=VxWG2HfcxwBhLUV4LnAlte9T2dH5dXIy-78gkPVfwSI,232
|
|
369
|
+
autogen/tools/experimental/perplexity/perplexity_search.py,sha256=mIRJYh9QCo4CEm2AzgK7YyrUywDkbTm-5gtWg63ytyw,9856
|
|
370
|
+
autogen/tools/experimental/reliable/__init__.py,sha256=GLvfvsFLfBANFVcOptIa_Tm71YsHt5U7X5N9quqDZW0,479
|
|
371
|
+
autogen/tools/experimental/reliable/reliable.py,sha256=fVp_CaxrMCwbQsrCuOl-Altd5sEozh_T3ayHIWSdSpk,64381
|
|
372
|
+
autogen/tools/experimental/searxng/__init__.py,sha256=IiScuchBMO0wDPUo58s41aQbr0CrTkumHeZj-eSzZJo,223
|
|
373
|
+
autogen/tools/experimental/searxng/searxng_search.py,sha256=EJadnyHIFLdJCt158IlbSm3JHGA1Ip4FF8ECC05otYE,4848
|
|
374
|
+
autogen/tools/experimental/tavily/__init__.py,sha256=rvztagn7FpWiXZwJtZmKbIFBteBenaedwsiUViDyC4Y,220
|
|
375
|
+
autogen/tools/experimental/tavily/tavily_search.py,sha256=uQ-4u7P3QPdJnCDANVBJvGTBuq2TVw2VNHfL8T3i904,7715
|
|
376
|
+
autogen/tools/experimental/web_search_preview/__init__.py,sha256=8vd1XWS14883MQ4U4dHvMP8aAKAtMILLnqRJNzgNh6A,233
|
|
377
|
+
autogen/tools/experimental/web_search_preview/web_search_preview.py,sha256=suQb9bvWDsyQBgDCG2Q0rMuL-8M3uBdi1-WWE-vYMFo,5063
|
|
378
|
+
autogen/tools/experimental/wikipedia/__init__.py,sha256=jS_gUMyz-uCWr75yKv2esIiGz0ijNDNokt6wovQULLE,274
|
|
379
|
+
autogen/tools/experimental/wikipedia/wikipedia.py,sha256=phtwNOW5KcvXq-1-3yYjm6EJbG2KBMPEgQq_yeTX7r8,11490
|
|
380
|
+
templates/main.jinja2,sha256=mu7z_4NjI1XMEwQx9KaFQixi4ImfwY0FZQaYUJVBnSc,1765
|
|
381
|
+
templates/client_template/main.jinja2,sha256=9_1pmPNLlPZpfcE0KqXJ6uBVzQtmFqWbxs2xyzCOfxY,2115
|
|
382
|
+
templates/config_template/config.jinja2,sha256=A-p-YBsnEm1iftBIhuIBfIyCY-qw34KWcxalmM6KPWc,167
|
|
383
|
+
ag2-0.9.9.dist-info/METADATA,sha256=63Y1E-i_x9rZfDUAczAxhfF5iCSqSxdFa8O7qMZDX_k,36124
|
|
384
|
+
ag2-0.9.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
385
|
+
ag2-0.9.9.dist-info/licenses/LICENSE,sha256=GEFQVNayAR-S_rQD5l8hPdgvgyktVdy4Bx5-v90IfRI,11384
|
|
386
|
+
ag2-0.9.9.dist-info/licenses/NOTICE.md,sha256=07iCPQGbth4pQrgkSgZinJGT5nXddkZ6_MGYcBd2oiY,1134
|
|
387
|
+
ag2-0.9.9.dist-info/RECORD,,
|
autogen/__init__.py
CHANGED
|
@@ -31,10 +31,9 @@ from .exception_utils import (
|
|
|
31
31
|
SenderRequiredError,
|
|
32
32
|
UndefinedNextAgentError,
|
|
33
33
|
)
|
|
34
|
-
from .llm_config import LLMConfig
|
|
34
|
+
from .llm_config import LLMConfig, ModelClient
|
|
35
35
|
from .oai import (
|
|
36
36
|
Cache,
|
|
37
|
-
ModelClient,
|
|
38
37
|
OpenAIWrapper,
|
|
39
38
|
config_list_from_dotenv,
|
|
40
39
|
config_list_from_json,
|
|
@@ -12,10 +12,10 @@ import pkgutil
|
|
|
12
12
|
import re
|
|
13
13
|
import shutil
|
|
14
14
|
import sys
|
|
15
|
-
from collections.abc import Iterable
|
|
15
|
+
from collections.abc import Iterable, Iterator
|
|
16
16
|
from pathlib import Path
|
|
17
17
|
from types import ModuleType
|
|
18
|
-
from typing import Any
|
|
18
|
+
from typing import Any
|
|
19
19
|
|
|
20
20
|
from ..doc_utils import get_target_module
|
|
21
21
|
from ..import_utils import optional_import_block, require_optional_import
|
|
@@ -127,7 +127,6 @@ def generate(target_dir: Path, template_dir: Path) -> None:
|
|
|
127
127
|
|
|
128
128
|
def fix_api_reference_links(content: str) -> str:
|
|
129
129
|
"""Fix the API reference links in the content."""
|
|
130
|
-
|
|
131
130
|
# Define a pattern that matches API reference links
|
|
132
131
|
pattern = r"(/docs/api-reference/[^#\)]+#)autogen\.([^\)]+)"
|
|
133
132
|
|
|
@@ -176,13 +175,13 @@ def get_mdx_files(directory: Path) -> list[str]:
|
|
|
176
175
|
return [f"{p.relative_to(directory).with_suffix('')!s}".replace("\\", "/") for p in directory.rglob("*.mdx")]
|
|
177
176
|
|
|
178
177
|
|
|
179
|
-
def add_prefix(path: str, parent_groups:
|
|
178
|
+
def add_prefix(path: str, parent_groups: list[str] | None = None) -> str:
|
|
180
179
|
"""Create full path with prefix and parent groups."""
|
|
181
180
|
groups = parent_groups or []
|
|
182
181
|
return f"docs/api-reference/{'/'.join(groups + [path])}"
|
|
183
182
|
|
|
184
183
|
|
|
185
|
-
def create_nav_structure(paths: list[str], parent_groups:
|
|
184
|
+
def create_nav_structure(paths: list[str], parent_groups: list[str] | None = None) -> list[Any]:
|
|
186
185
|
"""Convert list of file paths into nested navigation structure."""
|
|
187
186
|
groups: dict[str, list[str]] = {}
|
|
188
187
|
pages = []
|
|
@@ -8,7 +8,6 @@ import os
|
|
|
8
8
|
import re
|
|
9
9
|
import shutil
|
|
10
10
|
from pathlib import Path
|
|
11
|
-
from typing import Optional, Union
|
|
12
11
|
|
|
13
12
|
from ..import_utils import optional_import_block, require_optional_import
|
|
14
13
|
from .notebook_processor import (
|
|
@@ -231,7 +230,6 @@ def fix_internal_links(source_path: str, content: str) -> str:
|
|
|
231
230
|
Returns:
|
|
232
231
|
Content with internal links converted to relative paths
|
|
233
232
|
"""
|
|
234
|
-
|
|
235
233
|
# Define regex patterns for HTML and Markdown links
|
|
236
234
|
html_link_pattern = r'href="(/docs/[^"]*)"'
|
|
237
235
|
html_img_src_pattern = r'src="(/snippets/[^"]+)"'
|
|
@@ -427,7 +425,7 @@ def format_navigation(
|
|
|
427
425
|
nav: list[NavigationGroup],
|
|
428
426
|
mkdocs_docs_dir: Path = mkdocs_docs_dir,
|
|
429
427
|
depth: int = 0,
|
|
430
|
-
keywords:
|
|
428
|
+
keywords: dict[str, str] | None = None,
|
|
431
429
|
) -> str:
|
|
432
430
|
"""Recursively format navigation structure into markdown-style nested list.
|
|
433
431
|
|
|
@@ -514,8 +512,8 @@ def copy_assets(website_dir: Path) -> None:
|
|
|
514
512
|
src_dir = website_dir / "static" / "img"
|
|
515
513
|
dest_dir = website_dir / "mkdocs" / "docs" / "assets" / "img"
|
|
516
514
|
|
|
517
|
-
|
|
518
|
-
copy_files(src_dir, dest_dir,
|
|
515
|
+
git_tracked_img_files = get_git_tracked_and_untracked_files_in_directory(website_dir / "static" / "img")
|
|
516
|
+
copy_files(src_dir, dest_dir, git_tracked_img_files)
|
|
519
517
|
|
|
520
518
|
|
|
521
519
|
def add_excerpt_marker(content: str) -> str:
|
|
@@ -527,7 +525,6 @@ def add_excerpt_marker(content: str) -> str:
|
|
|
527
525
|
Returns:
|
|
528
526
|
str: Modified body content with <!-- more --> added
|
|
529
527
|
"""
|
|
530
|
-
|
|
531
528
|
if "<!-- more -->" in content:
|
|
532
529
|
return content.replace(r"\<!-- more -->", "<!-- more -->")
|
|
533
530
|
|
|
@@ -625,7 +622,7 @@ def fix_snippet_imports(content: str, snippets_dir: Path = mkdocs_output_dir.par
|
|
|
625
622
|
file_path = snippets_dir / relative_path
|
|
626
623
|
|
|
627
624
|
# Read the file content
|
|
628
|
-
with open(file_path
|
|
625
|
+
with open(file_path) as f:
|
|
629
626
|
file_content = f.read()
|
|
630
627
|
|
|
631
628
|
# Replace the import statement with the file content
|
|
@@ -675,7 +672,7 @@ _is_first_notebook = True
|
|
|
675
672
|
|
|
676
673
|
|
|
677
674
|
def add_front_matter_to_metadata_yml(
|
|
678
|
-
front_matter: dict[str,
|
|
675
|
+
front_matter: dict[str, str | list[str] | None], website_build_directory: Path, rendered_mdx: Path
|
|
679
676
|
) -> None:
|
|
680
677
|
"""Add notebook metadata to a YAML file containing metadata for all notebooks."""
|
|
681
678
|
global _is_first_notebook
|
|
@@ -749,7 +746,6 @@ def transform_admonition_blocks(content: str) -> str:
|
|
|
749
746
|
Returns:
|
|
750
747
|
String with Material for MkDocs admonition blocks
|
|
751
748
|
"""
|
|
752
|
-
|
|
753
749
|
tag_mappings = {
|
|
754
750
|
"Tip": "tip",
|
|
755
751
|
"Warning": "warning",
|
|
@@ -871,7 +867,6 @@ def remove_mdx_code_blocks(content: str) -> str:
|
|
|
871
867
|
Returns:
|
|
872
868
|
String with mdx-code-block markers removed
|
|
873
869
|
"""
|
|
874
|
-
|
|
875
870
|
# Pattern to match mdx-code-block sections
|
|
876
871
|
# Captures everything between ````mdx-code-block and ````
|
|
877
872
|
pattern = re.compile(r"````mdx-code-block\n(.*?)\n````", re.DOTALL)
|
|
@@ -886,7 +881,7 @@ def remove_mdx_code_blocks(content: str) -> str:
|
|
|
886
881
|
def post_process_func(
|
|
887
882
|
rendered_mdx: Path,
|
|
888
883
|
source_notebooks: Path,
|
|
889
|
-
front_matter: dict[str,
|
|
884
|
+
front_matter: dict[str, str | list[str] | None],
|
|
890
885
|
website_build_directory: Path,
|
|
891
886
|
) -> None:
|
|
892
887
|
with open(rendered_mdx, encoding="utf-8") as f:
|
|
@@ -940,7 +935,7 @@ def post_process_func(
|
|
|
940
935
|
rel_path = f"/{rendered_mdx.relative_to(website_build_directory.parents[0])}"
|
|
941
936
|
content = transform_content_for_mkdocs(content, rel_path)
|
|
942
937
|
|
|
943
|
-
# Convert mdx image syntax to
|
|
938
|
+
# Convert mdx image syntax to mintlify image syntax
|
|
944
939
|
# content = convert_mdx_image_blocks(content, rendered_mdx, website_build_directory)
|
|
945
940
|
|
|
946
941
|
# ensure editUrl is present
|
|
@@ -999,7 +994,7 @@ def add_notebooks_nav(mkdocs_nav_path: Path, metadata_yml_path: Path) -> None:
|
|
|
999
994
|
metadata_yml_path: Path to the notebooks metadata YAML file
|
|
1000
995
|
"""
|
|
1001
996
|
# Read the metadata file to get notebook items
|
|
1002
|
-
with open(metadata_yml_path
|
|
997
|
+
with open(metadata_yml_path) as file:
|
|
1003
998
|
items = yaml.safe_load(file)
|
|
1004
999
|
|
|
1005
1000
|
# Create navigation list entries for each notebook
|
|
@@ -1009,7 +1004,7 @@ def add_notebooks_nav(mkdocs_nav_path: Path, metadata_yml_path: Path) -> None:
|
|
|
1009
1004
|
nav_list.append(f" - [{item['title']}]({_link})\n")
|
|
1010
1005
|
|
|
1011
1006
|
# Read the summary file
|
|
1012
|
-
with open(mkdocs_nav_path
|
|
1007
|
+
with open(mkdocs_nav_path) as file:
|
|
1013
1008
|
lines = file.readlines()
|
|
1014
1009
|
|
|
1015
1010
|
# Find where to insert the notebook entries
|
|
@@ -1036,7 +1031,6 @@ def _generate_navigation_entries(dir_path: Path, mkdocs_output_dir: Path) -> lis
|
|
|
1036
1031
|
Returns:
|
|
1037
1032
|
str: Formatted navigation entries.
|
|
1038
1033
|
"""
|
|
1039
|
-
|
|
1040
1034
|
# Read all user story files and sort them by date (newest first)
|
|
1041
1035
|
files = sorted(dir_path.glob("**/*.md"), key=sort_files_by_date, reverse=True)
|
|
1042
1036
|
|