ag2 0.9.1a1__py3-none-any.whl → 0.9.1.post0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ag2 might be problematic. Click here for more details.
- {ag2-0.9.1a1.dist-info → ag2-0.9.1.post0.dist-info}/METADATA +264 -73
- ag2-0.9.1.post0.dist-info/RECORD +392 -0
- {ag2-0.9.1a1.dist-info → ag2-0.9.1.post0.dist-info}/WHEEL +1 -2
- autogen/__init__.py +89 -0
- autogen/_website/__init__.py +3 -0
- autogen/_website/generate_api_references.py +427 -0
- autogen/_website/generate_mkdocs.py +1174 -0
- autogen/_website/notebook_processor.py +476 -0
- autogen/_website/process_notebooks.py +656 -0
- autogen/_website/utils.py +412 -0
- autogen/agentchat/__init__.py +44 -0
- autogen/agentchat/agent.py +182 -0
- autogen/agentchat/assistant_agent.py +85 -0
- autogen/agentchat/chat.py +309 -0
- autogen/agentchat/contrib/__init__.py +5 -0
- autogen/agentchat/contrib/agent_eval/README.md +7 -0
- autogen/agentchat/contrib/agent_eval/agent_eval.py +108 -0
- autogen/agentchat/contrib/agent_eval/criterion.py +43 -0
- autogen/agentchat/contrib/agent_eval/critic_agent.py +44 -0
- autogen/agentchat/contrib/agent_eval/quantifier_agent.py +39 -0
- autogen/agentchat/contrib/agent_eval/subcritic_agent.py +45 -0
- autogen/agentchat/contrib/agent_eval/task.py +42 -0
- autogen/agentchat/contrib/agent_optimizer.py +429 -0
- autogen/agentchat/contrib/capabilities/__init__.py +5 -0
- autogen/agentchat/contrib/capabilities/agent_capability.py +20 -0
- autogen/agentchat/contrib/capabilities/generate_images.py +301 -0
- autogen/agentchat/contrib/capabilities/teachability.py +393 -0
- autogen/agentchat/contrib/capabilities/text_compressors.py +66 -0
- autogen/agentchat/contrib/capabilities/tools_capability.py +22 -0
- autogen/agentchat/contrib/capabilities/transform_messages.py +93 -0
- autogen/agentchat/contrib/capabilities/transforms.py +566 -0
- autogen/agentchat/contrib/capabilities/transforms_util.py +122 -0
- autogen/agentchat/contrib/capabilities/vision_capability.py +214 -0
- autogen/agentchat/contrib/captainagent/__init__.py +9 -0
- autogen/agentchat/contrib/captainagent/agent_builder.py +790 -0
- autogen/agentchat/contrib/captainagent/captainagent.py +512 -0
- autogen/agentchat/contrib/captainagent/tool_retriever.py +335 -0
- autogen/agentchat/contrib/captainagent/tools/README.md +44 -0
- autogen/agentchat/contrib/captainagent/tools/__init__.py +5 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_correlation.py +40 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_skewness_and_kurtosis.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_iqr.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_zscore.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/explore_csv.py +21 -0
- autogen/agentchat/contrib/captainagent/tools/data_analysis/shapiro_wilk_test.py +30 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_download.py +27 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_search.py +53 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_image.py +53 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_text.py +38 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_wikipedia_text.py +21 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_youtube_caption.py +34 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/image_qa.py +60 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/optical_character_recognition.py +61 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/perform_web_search.py +47 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/scrape_wikipedia_tables.py +33 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/transcribe_audio_file.py +21 -0
- autogen/agentchat/contrib/captainagent/tools/information_retrieval/youtube_download.py +35 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_circle_area_from_diameter.py +21 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_day_of_the_week.py +18 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_fraction_sum.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_matrix_power.py +31 -0
- autogen/agentchat/contrib/captainagent/tools/math/calculate_reflected_point.py +16 -0
- autogen/agentchat/contrib/captainagent/tools/math/complex_numbers_product.py +25 -0
- autogen/agentchat/contrib/captainagent/tools/math/compute_currency_conversion.py +23 -0
- autogen/agentchat/contrib/captainagent/tools/math/count_distinct_permutations.py +27 -0
- autogen/agentchat/contrib/captainagent/tools/math/evaluate_expression.py +28 -0
- autogen/agentchat/contrib/captainagent/tools/math/find_continuity_point.py +34 -0
- autogen/agentchat/contrib/captainagent/tools/math/fraction_to_mixed_numbers.py +39 -0
- autogen/agentchat/contrib/captainagent/tools/math/modular_inverse_sum.py +23 -0
- autogen/agentchat/contrib/captainagent/tools/math/simplify_mixed_numbers.py +36 -0
- autogen/agentchat/contrib/captainagent/tools/math/sum_of_digit_factorials.py +15 -0
- autogen/agentchat/contrib/captainagent/tools/math/sum_of_primes_below.py +15 -0
- autogen/agentchat/contrib/captainagent/tools/requirements.txt +10 -0
- autogen/agentchat/contrib/captainagent/tools/tool_description.tsv +34 -0
- autogen/agentchat/contrib/gpt_assistant_agent.py +526 -0
- autogen/agentchat/contrib/graph_rag/__init__.py +9 -0
- autogen/agentchat/contrib/graph_rag/document.py +29 -0
- autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py +170 -0
- autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py +103 -0
- autogen/agentchat/contrib/graph_rag/graph_query_engine.py +53 -0
- autogen/agentchat/contrib/graph_rag/graph_rag_capability.py +63 -0
- autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py +268 -0
- autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py +83 -0
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py +210 -0
- autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py +93 -0
- autogen/agentchat/contrib/img_utils.py +397 -0
- autogen/agentchat/contrib/llamaindex_conversable_agent.py +117 -0
- autogen/agentchat/contrib/llava_agent.py +187 -0
- autogen/agentchat/contrib/math_user_proxy_agent.py +464 -0
- autogen/agentchat/contrib/multimodal_conversable_agent.py +125 -0
- autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +324 -0
- autogen/agentchat/contrib/rag/__init__.py +10 -0
- autogen/agentchat/contrib/rag/chromadb_query_engine.py +272 -0
- autogen/agentchat/contrib/rag/llamaindex_query_engine.py +198 -0
- autogen/agentchat/contrib/rag/mongodb_query_engine.py +329 -0
- autogen/agentchat/contrib/rag/query_engine.py +74 -0
- autogen/agentchat/contrib/retrieve_assistant_agent.py +56 -0
- autogen/agentchat/contrib/retrieve_user_proxy_agent.py +703 -0
- autogen/agentchat/contrib/society_of_mind_agent.py +199 -0
- autogen/agentchat/contrib/swarm_agent.py +1425 -0
- autogen/agentchat/contrib/text_analyzer_agent.py +79 -0
- autogen/agentchat/contrib/vectordb/__init__.py +5 -0
- autogen/agentchat/contrib/vectordb/base.py +232 -0
- autogen/agentchat/contrib/vectordb/chromadb.py +315 -0
- autogen/agentchat/contrib/vectordb/couchbase.py +407 -0
- autogen/agentchat/contrib/vectordb/mongodb.py +550 -0
- autogen/agentchat/contrib/vectordb/pgvectordb.py +928 -0
- autogen/agentchat/contrib/vectordb/qdrant.py +320 -0
- autogen/agentchat/contrib/vectordb/utils.py +126 -0
- autogen/agentchat/contrib/web_surfer.py +303 -0
- autogen/agentchat/conversable_agent.py +4020 -0
- autogen/agentchat/group/__init__.py +64 -0
- autogen/agentchat/group/available_condition.py +91 -0
- autogen/agentchat/group/context_condition.py +77 -0
- autogen/agentchat/group/context_expression.py +238 -0
- autogen/agentchat/group/context_str.py +41 -0
- autogen/agentchat/group/context_variables.py +192 -0
- autogen/agentchat/group/group_tool_executor.py +202 -0
- autogen/agentchat/group/group_utils.py +591 -0
- autogen/agentchat/group/handoffs.py +244 -0
- autogen/agentchat/group/llm_condition.py +93 -0
- autogen/agentchat/group/multi_agent_chat.py +237 -0
- autogen/agentchat/group/on_condition.py +58 -0
- autogen/agentchat/group/on_context_condition.py +54 -0
- autogen/agentchat/group/patterns/__init__.py +18 -0
- autogen/agentchat/group/patterns/auto.py +159 -0
- autogen/agentchat/group/patterns/manual.py +176 -0
- autogen/agentchat/group/patterns/pattern.py +288 -0
- autogen/agentchat/group/patterns/random.py +106 -0
- autogen/agentchat/group/patterns/round_robin.py +117 -0
- autogen/agentchat/group/reply_result.py +26 -0
- autogen/agentchat/group/speaker_selection_result.py +41 -0
- autogen/agentchat/group/targets/__init__.py +4 -0
- autogen/agentchat/group/targets/group_chat_target.py +132 -0
- autogen/agentchat/group/targets/group_manager_target.py +151 -0
- autogen/agentchat/group/targets/transition_target.py +413 -0
- autogen/agentchat/group/targets/transition_utils.py +6 -0
- autogen/agentchat/groupchat.py +1694 -0
- autogen/agentchat/realtime/__init__.py +3 -0
- autogen/agentchat/realtime/experimental/__init__.py +20 -0
- autogen/agentchat/realtime/experimental/audio_adapters/__init__.py +8 -0
- autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py +148 -0
- autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py +139 -0
- autogen/agentchat/realtime/experimental/audio_observer.py +42 -0
- autogen/agentchat/realtime/experimental/clients/__init__.py +15 -0
- autogen/agentchat/realtime/experimental/clients/gemini/__init__.py +7 -0
- autogen/agentchat/realtime/experimental/clients/gemini/client.py +274 -0
- autogen/agentchat/realtime/experimental/clients/oai/__init__.py +8 -0
- autogen/agentchat/realtime/experimental/clients/oai/base_client.py +220 -0
- autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py +243 -0
- autogen/agentchat/realtime/experimental/clients/oai/utils.py +48 -0
- autogen/agentchat/realtime/experimental/clients/realtime_client.py +190 -0
- autogen/agentchat/realtime/experimental/function_observer.py +85 -0
- autogen/agentchat/realtime/experimental/realtime_agent.py +158 -0
- autogen/agentchat/realtime/experimental/realtime_events.py +42 -0
- autogen/agentchat/realtime/experimental/realtime_observer.py +100 -0
- autogen/agentchat/realtime/experimental/realtime_swarm.py +475 -0
- autogen/agentchat/realtime/experimental/websockets.py +21 -0
- autogen/agentchat/realtime_agent/__init__.py +21 -0
- autogen/agentchat/user_proxy_agent.py +111 -0
- autogen/agentchat/utils.py +206 -0
- autogen/agents/__init__.py +3 -0
- autogen/agents/contrib/__init__.py +10 -0
- autogen/agents/contrib/time/__init__.py +8 -0
- autogen/agents/contrib/time/time_reply_agent.py +73 -0
- autogen/agents/contrib/time/time_tool_agent.py +51 -0
- autogen/agents/experimental/__init__.py +27 -0
- autogen/agents/experimental/deep_research/__init__.py +7 -0
- autogen/agents/experimental/deep_research/deep_research.py +52 -0
- autogen/agents/experimental/discord/__init__.py +7 -0
- autogen/agents/experimental/discord/discord.py +66 -0
- autogen/agents/experimental/document_agent/__init__.py +19 -0
- autogen/agents/experimental/document_agent/chroma_query_engine.py +316 -0
- autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py +118 -0
- autogen/agents/experimental/document_agent/document_agent.py +461 -0
- autogen/agents/experimental/document_agent/document_conditions.py +50 -0
- autogen/agents/experimental/document_agent/document_utils.py +380 -0
- autogen/agents/experimental/document_agent/inmemory_query_engine.py +220 -0
- autogen/agents/experimental/document_agent/parser_utils.py +130 -0
- autogen/agents/experimental/document_agent/url_utils.py +426 -0
- autogen/agents/experimental/reasoning/__init__.py +7 -0
- autogen/agents/experimental/reasoning/reasoning_agent.py +1178 -0
- autogen/agents/experimental/slack/__init__.py +7 -0
- autogen/agents/experimental/slack/slack.py +73 -0
- autogen/agents/experimental/telegram/__init__.py +7 -0
- autogen/agents/experimental/telegram/telegram.py +77 -0
- autogen/agents/experimental/websurfer/__init__.py +7 -0
- autogen/agents/experimental/websurfer/websurfer.py +62 -0
- autogen/agents/experimental/wikipedia/__init__.py +7 -0
- autogen/agents/experimental/wikipedia/wikipedia.py +90 -0
- autogen/browser_utils.py +309 -0
- autogen/cache/__init__.py +10 -0
- autogen/cache/abstract_cache_base.py +75 -0
- autogen/cache/cache.py +203 -0
- autogen/cache/cache_factory.py +88 -0
- autogen/cache/cosmos_db_cache.py +144 -0
- autogen/cache/disk_cache.py +102 -0
- autogen/cache/in_memory_cache.py +58 -0
- autogen/cache/redis_cache.py +123 -0
- autogen/code_utils.py +596 -0
- autogen/coding/__init__.py +22 -0
- autogen/coding/base.py +119 -0
- autogen/coding/docker_commandline_code_executor.py +268 -0
- autogen/coding/factory.py +47 -0
- autogen/coding/func_with_reqs.py +202 -0
- autogen/coding/jupyter/__init__.py +23 -0
- autogen/coding/jupyter/base.py +36 -0
- autogen/coding/jupyter/docker_jupyter_server.py +167 -0
- autogen/coding/jupyter/embedded_ipython_code_executor.py +182 -0
- autogen/coding/jupyter/import_utils.py +82 -0
- autogen/coding/jupyter/jupyter_client.py +231 -0
- autogen/coding/jupyter/jupyter_code_executor.py +160 -0
- autogen/coding/jupyter/local_jupyter_server.py +172 -0
- autogen/coding/local_commandline_code_executor.py +405 -0
- autogen/coding/markdown_code_extractor.py +45 -0
- autogen/coding/utils.py +56 -0
- autogen/doc_utils.py +34 -0
- autogen/events/__init__.py +7 -0
- autogen/events/agent_events.py +1010 -0
- autogen/events/base_event.py +99 -0
- autogen/events/client_events.py +167 -0
- autogen/events/helpers.py +36 -0
- autogen/events/print_event.py +46 -0
- autogen/exception_utils.py +73 -0
- autogen/extensions/__init__.py +5 -0
- autogen/fast_depends/__init__.py +16 -0
- autogen/fast_depends/_compat.py +80 -0
- autogen/fast_depends/core/__init__.py +14 -0
- autogen/fast_depends/core/build.py +225 -0
- autogen/fast_depends/core/model.py +576 -0
- autogen/fast_depends/dependencies/__init__.py +15 -0
- autogen/fast_depends/dependencies/model.py +29 -0
- autogen/fast_depends/dependencies/provider.py +39 -0
- autogen/fast_depends/library/__init__.py +10 -0
- autogen/fast_depends/library/model.py +46 -0
- autogen/fast_depends/py.typed +6 -0
- autogen/fast_depends/schema.py +66 -0
- autogen/fast_depends/use.py +280 -0
- autogen/fast_depends/utils.py +187 -0
- autogen/formatting_utils.py +83 -0
- autogen/function_utils.py +13 -0
- autogen/graph_utils.py +178 -0
- autogen/import_utils.py +526 -0
- autogen/interop/__init__.py +22 -0
- autogen/interop/crewai/__init__.py +7 -0
- autogen/interop/crewai/crewai.py +88 -0
- autogen/interop/interoperability.py +71 -0
- autogen/interop/interoperable.py +46 -0
- autogen/interop/langchain/__init__.py +8 -0
- autogen/interop/langchain/langchain_chat_model_factory.py +155 -0
- autogen/interop/langchain/langchain_tool.py +82 -0
- autogen/interop/litellm/__init__.py +7 -0
- autogen/interop/litellm/litellm_config_factory.py +113 -0
- autogen/interop/pydantic_ai/__init__.py +7 -0
- autogen/interop/pydantic_ai/pydantic_ai.py +168 -0
- autogen/interop/registry.py +69 -0
- autogen/io/__init__.py +15 -0
- autogen/io/base.py +151 -0
- autogen/io/console.py +56 -0
- autogen/io/processors/__init__.py +12 -0
- autogen/io/processors/base.py +21 -0
- autogen/io/processors/console_event_processor.py +56 -0
- autogen/io/run_response.py +293 -0
- autogen/io/thread_io_stream.py +63 -0
- autogen/io/websockets.py +213 -0
- autogen/json_utils.py +43 -0
- autogen/llm_config.py +379 -0
- autogen/logger/__init__.py +11 -0
- autogen/logger/base_logger.py +128 -0
- autogen/logger/file_logger.py +261 -0
- autogen/logger/logger_factory.py +42 -0
- autogen/logger/logger_utils.py +57 -0
- autogen/logger/sqlite_logger.py +523 -0
- autogen/math_utils.py +339 -0
- autogen/mcp/__init__.py +7 -0
- autogen/mcp/mcp_client.py +208 -0
- autogen/messages/__init__.py +7 -0
- autogen/messages/agent_messages.py +948 -0
- autogen/messages/base_message.py +107 -0
- autogen/messages/client_messages.py +171 -0
- autogen/messages/print_message.py +49 -0
- autogen/oai/__init__.py +53 -0
- autogen/oai/anthropic.py +714 -0
- autogen/oai/bedrock.py +628 -0
- autogen/oai/cerebras.py +299 -0
- autogen/oai/client.py +1435 -0
- autogen/oai/client_utils.py +169 -0
- autogen/oai/cohere.py +479 -0
- autogen/oai/gemini.py +990 -0
- autogen/oai/gemini_types.py +129 -0
- autogen/oai/groq.py +305 -0
- autogen/oai/mistral.py +303 -0
- autogen/oai/oai_models/__init__.py +11 -0
- autogen/oai/oai_models/_models.py +16 -0
- autogen/oai/oai_models/chat_completion.py +87 -0
- autogen/oai/oai_models/chat_completion_audio.py +32 -0
- autogen/oai/oai_models/chat_completion_message.py +86 -0
- autogen/oai/oai_models/chat_completion_message_tool_call.py +37 -0
- autogen/oai/oai_models/chat_completion_token_logprob.py +63 -0
- autogen/oai/oai_models/completion_usage.py +60 -0
- autogen/oai/ollama.py +643 -0
- autogen/oai/openai_utils.py +881 -0
- autogen/oai/together.py +370 -0
- autogen/retrieve_utils.py +491 -0
- autogen/runtime_logging.py +160 -0
- autogen/token_count_utils.py +267 -0
- autogen/tools/__init__.py +20 -0
- autogen/tools/contrib/__init__.py +9 -0
- autogen/tools/contrib/time/__init__.py +7 -0
- autogen/tools/contrib/time/time.py +41 -0
- autogen/tools/dependency_injection.py +254 -0
- autogen/tools/experimental/__init__.py +43 -0
- autogen/tools/experimental/browser_use/__init__.py +7 -0
- autogen/tools/experimental/browser_use/browser_use.py +161 -0
- autogen/tools/experimental/crawl4ai/__init__.py +7 -0
- autogen/tools/experimental/crawl4ai/crawl4ai.py +153 -0
- autogen/tools/experimental/deep_research/__init__.py +7 -0
- autogen/tools/experimental/deep_research/deep_research.py +328 -0
- autogen/tools/experimental/duckduckgo/__init__.py +7 -0
- autogen/tools/experimental/duckduckgo/duckduckgo_search.py +109 -0
- autogen/tools/experimental/google/__init__.py +14 -0
- autogen/tools/experimental/google/authentication/__init__.py +11 -0
- autogen/tools/experimental/google/authentication/credentials_hosted_provider.py +43 -0
- autogen/tools/experimental/google/authentication/credentials_local_provider.py +91 -0
- autogen/tools/experimental/google/authentication/credentials_provider.py +35 -0
- autogen/tools/experimental/google/drive/__init__.py +9 -0
- autogen/tools/experimental/google/drive/drive_functions.py +124 -0
- autogen/tools/experimental/google/drive/toolkit.py +88 -0
- autogen/tools/experimental/google/model.py +17 -0
- autogen/tools/experimental/google/toolkit_protocol.py +19 -0
- autogen/tools/experimental/google_search/__init__.py +8 -0
- autogen/tools/experimental/google_search/google_search.py +93 -0
- autogen/tools/experimental/google_search/youtube_search.py +181 -0
- autogen/tools/experimental/messageplatform/__init__.py +17 -0
- autogen/tools/experimental/messageplatform/discord/__init__.py +7 -0
- autogen/tools/experimental/messageplatform/discord/discord.py +288 -0
- autogen/tools/experimental/messageplatform/slack/__init__.py +7 -0
- autogen/tools/experimental/messageplatform/slack/slack.py +391 -0
- autogen/tools/experimental/messageplatform/telegram/__init__.py +7 -0
- autogen/tools/experimental/messageplatform/telegram/telegram.py +275 -0
- autogen/tools/experimental/perplexity/__init__.py +7 -0
- autogen/tools/experimental/perplexity/perplexity_search.py +260 -0
- autogen/tools/experimental/tavily/__init__.py +7 -0
- autogen/tools/experimental/tavily/tavily_search.py +183 -0
- autogen/tools/experimental/web_search_preview/__init__.py +7 -0
- autogen/tools/experimental/web_search_preview/web_search_preview.py +114 -0
- autogen/tools/experimental/wikipedia/__init__.py +7 -0
- autogen/tools/experimental/wikipedia/wikipedia.py +287 -0
- autogen/tools/function_utils.py +411 -0
- autogen/tools/tool.py +187 -0
- autogen/tools/toolkit.py +86 -0
- autogen/types.py +29 -0
- autogen/version.py +7 -0
- ag2-0.9.1a1.dist-info/RECORD +0 -6
- ag2-0.9.1a1.dist-info/top_level.txt +0 -1
- {ag2-0.9.1a1.dist-info → ag2-0.9.1.post0.dist-info/licenses}/LICENSE +0 -0
- {ag2-0.9.1a1.dist-info → ag2-0.9.1.post0.dist-info/licenses}/NOTICE.md +0 -0
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
autogen/__init__.py,sha256=8JVF68yM6D3qsY2ZXLOwX0C7QK2td45Veka3d5zAGHA,2108
|
|
2
|
+
autogen/browser_utils.py,sha256=tkNiADQuO27htXvj1FcQfGvw02Qjn-L-l5A0MJhc8lY,13264
|
|
3
|
+
autogen/code_utils.py,sha256=hDMSbYiqroQp1PdEpMwatQ16cibElFG0UuB6r4c107A,23900
|
|
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=Vpm23hwFj_Xi6dzkPHpPv20P1Xeo4pUFPhhHTDsOncI,14107
|
|
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=YukZ5zIFYpMhlQ_olcWkkgdY7RATOWxDna2VVuOd3NI,198
|
|
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=x2-UQzDJ_dhteicsS2eAKRTG8ozDrqdWh0ZawuFy6iI,191305
|
|
29
|
+
autogen/agentchat/groupchat.py,sha256=eh_JNZWU-0gbxO7rIngokh71kpHLkA1Qunn6zXDdM0k,85361
|
|
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=9EUhacAFOC5PZHWclj9wZA1bgjyVy3g3Y3TDbn-7BhI,22265
|
|
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=Q_LSNQRRECKY1sd9r2KV6q4QukandWZSzVTgfgf1Rnk,25749
|
|
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=XjVXvJ25Ka4l3kbPOVRgZbxM9PpaoS8ekQyeieJPF4U,25600
|
|
136
|
+
autogen/agentchat/group/handoffs.py,sha256=ftGN8pUSQ0Y8Zu7M57kEazFuHG1kte4gqD8LD7gT54s,8463
|
|
137
|
+
autogen/agentchat/group/llm_condition.py,sha256=wfuEET1VhyVVGedYxcyuhX_Vus6uZHxUl_SPpu4YIsc,2951
|
|
138
|
+
autogen/agentchat/group/multi_agent_chat.py,sha256=oKAWiziaSZ0otwfGhSWaR26dYbfRQj_vau_P5Z1dvfY,7688
|
|
139
|
+
autogen/agentchat/group/on_condition.py,sha256=ZxLiI4APceCGUcPFnLrsik7DEX9YgRW200k1QIhyaWg,2185
|
|
140
|
+
autogen/agentchat/group/on_context_condition.py,sha256=rH4YlKnbUwUQ84lfEgACS9AQz6PCOYMZv2mQVjDSMUE,2008
|
|
141
|
+
autogen/agentchat/group/reply_result.py,sha256=KUJ2HWpRLEyc5SIVh60-GirsN7jFg-ceAeT4p7I0ZyQ,740
|
|
142
|
+
autogen/agentchat/group/speaker_selection_result.py,sha256=2pvl-9zJ1al0AbAmLDqGRm9JgfmS-lyEOFiZoKIkUHY,1623
|
|
143
|
+
autogen/agentchat/group/patterns/__init__.py,sha256=SUw-biSWow_uGHuHcMA3Pu2cq_CTTVeIqY2J8A5fq8A,446
|
|
144
|
+
autogen/agentchat/group/patterns/auto.py,sha256=h0LjzGHv3yRqDCAnlOfjofkYNKiVzSKVc64T_o8e7wY,6075
|
|
145
|
+
autogen/agentchat/group/patterns/manual.py,sha256=8ltqGFtt9xfyADl_OZFD0g-HydFQvDdrc35iwT612ok,6324
|
|
146
|
+
autogen/agentchat/group/patterns/pattern.py,sha256=Uz7FgUQq5VGg4k_FqSuLoOcTsuLFNJ96lEvahjfrPVE,10721
|
|
147
|
+
autogen/agentchat/group/patterns/random.py,sha256=yrNCYwcodhdcquNEkdaWO_T32jJjiqaslLithAX1dSM,3367
|
|
148
|
+
autogen/agentchat/group/patterns/round_robin.py,sha256=nS7nsQJKCq9lD0wyCx__gkWK3N9Z8bvlY2stUfE9JxA,3895
|
|
149
|
+
autogen/agentchat/group/targets/__init__.py,sha256=AJNSbl9iMe2hiDmZojTp8h889o5OYN3V7f2_2nr8px4,145
|
|
150
|
+
autogen/agentchat/group/targets/group_chat_target.py,sha256=4_bzVg1ODSIx7UfP8O9OdvTlRNtFuqZt77YqKFIwh74,5364
|
|
151
|
+
autogen/agentchat/group/targets/group_manager_target.py,sha256=Cp4Wbmp3a7fZBTN-s5eQEDRNyKWq9KYihRlzx1blnZQ,6276
|
|
152
|
+
autogen/agentchat/group/targets/transition_target.py,sha256=vdfNu6XZre18nwF0Vazn_5C5_qPYMUt76xGC0W5gA98,16179
|
|
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=i8rxU-Tjk2Pz-WOZJ5PuRymaMvVLH66lqH2LJ85PxLM,5713
|
|
159
|
+
autogen/agentchat/realtime/experimental/realtime_events.py,sha256=zmRr3pwPJpme5VZEADIz5vg9IZoT3Z1NAc3vt1RdWLk,1083
|
|
160
|
+
autogen/agentchat/realtime/experimental/realtime_observer.py,sha256=nTouVj5-il0q2_P2LTpyb4pnHqyfwP5MJh_QmMJF3e8,3061
|
|
161
|
+
autogen/agentchat/realtime/experimental/realtime_swarm.py,sha256=SRxG5jHGf52IGSXAUITPA9I_V2MqsBm-7ZlYVWbd6Ns,17501
|
|
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=-O10rpqPKZKxZO58rQOxPnwECe-RQJoSUTU_K8i0A98,6110
|
|
165
|
+
autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py,sha256=an1LFhCyfQGWpJL2_hlHf6qc-ovS5WNBbmFzCl80y6g,5935
|
|
166
|
+
autogen/agentchat/realtime/experimental/clients/__init__.py,sha256=mLQaJUrmJ2PNlFPMf02F5HRsuEP-DV_-5vQPLaNgRnQ,443
|
|
167
|
+
autogen/agentchat/realtime/experimental/clients/realtime_client.py,sha256=BltMkD56-tsp3Tj1Gm4gPLjONWT-21v9s-NMBUjvXoI,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=VhEgws0mq0sbcjnivMdSU5YTaHHBYxS7_7chA7m34GA,10206
|
|
170
|
+
autogen/agentchat/realtime/experimental/clients/oai/__init__.py,sha256=NMVpiwIA3mcC2l69GSivt2MW4lFJeTaAGyEbhhNgpNs,307
|
|
171
|
+
autogen/agentchat/realtime/experimental/clients/oai/base_client.py,sha256=c8AgqAkbaSHZyBW0VHH5NQNZ58IqURMrJfUZsczwgrI,8469
|
|
172
|
+
autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py,sha256=lvvXNdrdc99FoDfQTMd3MFQ8dsCD0Ade90ut5oDYkjU,9578
|
|
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=bBEWcUaD0rFdvFCTdq6ax0Pbd89jWvacnqpdmk9Daws,3169
|
|
179
|
+
autogen/agents/contrib/time/time_tool_agent.py,sha256=xwYF-0Hd6X111y3R8UUu8U5HVtVt3zgmPf8HYqc88Do,2132
|
|
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=_6ULJB-J17WJjgmEuDQA_gN5nFqXviZahuYbDr1AEgk,1773
|
|
183
|
+
autogen/agents/experimental/discord/__init__.py,sha256=u9uCviCbFRJ6xp87RI3WamDFNwUwGIHSnG9J39ioQ5c,206
|
|
184
|
+
autogen/agents/experimental/discord/discord.py,sha256=S5OkCgXJj2AnkEXZ3Z-pRG3_iDG73WLRLbUMlUZmu44,2705
|
|
185
|
+
autogen/agents/experimental/document_agent/__init__.py,sha256=YNuO2YqxckrfAxcmRcI5JmiE7w52lkyVdLyvWxmbSUw,603
|
|
186
|
+
autogen/agents/experimental/document_agent/chroma_query_engine.py,sha256=izKOopdDpmMfoAOCChR3evlLgJZkMh-x4XvsxiO9ol4,13864
|
|
187
|
+
autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py,sha256=3QBqyZxtQCidxEdwwEHE0WRMgW1Q1nnFZnm9Z3ahwZI,5060
|
|
188
|
+
autogen/agents/experimental/document_agent/document_agent.py,sha256=gxgbhTWfZSNHqY8SmJ7XdUxlRN_rT3Kgm7GADySCyaU,21797
|
|
189
|
+
autogen/agents/experimental/document_agent/document_conditions.py,sha256=yahgDlnG6ORw9RQ6GLLrn_ZczHv9XrLcdouo6M9rSZQ,2051
|
|
190
|
+
autogen/agents/experimental/document_agent/document_utils.py,sha256=g8PBcOFbVWtqP6rnRHJtY97ZJDXADcPzylkKZnhJfNA,14088
|
|
191
|
+
autogen/agents/experimental/document_agent/inmemory_query_engine.py,sha256=UFv0u2V0QG3mne9BuQksWggEjGSmO4em4VGkU1Zm2to,8966
|
|
192
|
+
autogen/agents/experimental/document_agent/parser_utils.py,sha256=U_K9DhpWGSZa1SAKcFzUZuPptDqqj3WMHzsAlKsed_4,5399
|
|
193
|
+
autogen/agents/experimental/document_agent/url_utils.py,sha256=88SBeNdvn5DZSI8DhbAmurQK6kuprTHEcyPYy-zS2Q4,15873
|
|
194
|
+
autogen/agents/experimental/reasoning/__init__.py,sha256=7sNWA9-cLr4F5NgS_0ykhAShA-YYwtbh0uJiPXPHJBM,242
|
|
195
|
+
autogen/agents/experimental/reasoning/reasoning_agent.py,sha256=3LoGs_Jt-i0HulW7TfEAmuXcL09HSlkzT-2YX4bLssQ,51123
|
|
196
|
+
autogen/agents/experimental/slack/__init__.py,sha256=PHPU684QTDEgiZZYA6v7Immgr9gaN4rfNN4W12DZ1pY,200
|
|
197
|
+
autogen/agents/experimental/slack/slack.py,sha256=QzT0awsZpAVCs5mmXeHT-V6uhKik8nCnoI-Eo2xrnrA,3103
|
|
198
|
+
autogen/agents/experimental/telegram/__init__.py,sha256=Y-HQJXmeux9QVY-Jjy22WO8cPWryxwaKEbhcypdUImY,209
|
|
199
|
+
autogen/agents/experimental/telegram/telegram.py,sha256=q-1i1xPVYxOUjABUvKRo5B9sPvF3p2bAQLQi9POndMM,3097
|
|
200
|
+
autogen/agents/experimental/websurfer/__init__.py,sha256=I3D0sIBDW9zxSOM0wNXdFfMZQIpiutet-9ikrm0WD0s,212
|
|
201
|
+
autogen/agents/experimental/websurfer/websurfer.py,sha256=SHhXfCxuV28zAzLx1kX5d9Cv2S0ikr_-suvqWig18kg,2596
|
|
202
|
+
autogen/agents/experimental/wikipedia/__init__.py,sha256=ytX_85hqagdyl3I72kYQM2-3bR7rG_SI5cyx8pKSG2I,212
|
|
203
|
+
autogen/agents/experimental/wikipedia/wikipedia.py,sha256=51fjVlmNDZfq3JrGIkknPXz41y_VJcMXfHNnnW58L0s,3942
|
|
204
|
+
autogen/cache/__init__.py,sha256=HF7qJyJpzqTYXSwUyVUxAFTY0eakw5OFwhyg_KO3QwE,375
|
|
205
|
+
autogen/cache/abstract_cache_base.py,sha256=RYYgxtKIGfgSbt0svm2wCN4S-LMwzSSccXEc1taBgTg,2442
|
|
206
|
+
autogen/cache/cache.py,sha256=zhaKr5JRTuxGLycN2nBI6CHBaXDosiq4RUWMiAJ32_U,7574
|
|
207
|
+
autogen/cache/cache_factory.py,sha256=JHiVGjNyf4sPwPZhJN-IcCwyWpC7smzWk3COnaTO6_A,3261
|
|
208
|
+
autogen/cache/cosmos_db_cache.py,sha256=alAXpn1RMmUMmekJAV-xaePOEoqqkXy48y9FYYVklVE,5743
|
|
209
|
+
autogen/cache/disk_cache.py,sha256=d6CVKboZLPDEM1QhAqCPzpPXlvaByLE4o4hxEIkVeU8,3331
|
|
210
|
+
autogen/cache/in_memory_cache.py,sha256=qeECs4UnN5FzuCSgiF-Ma11eLGSjJBgGlqLraWhDYDE,1852
|
|
211
|
+
autogen/cache/redis_cache.py,sha256=XqUVObZRbD_kDL5vDD6H6xu_U-xcL8qKmsUq2Ix8xVo,4248
|
|
212
|
+
autogen/coding/__init__.py,sha256=fN8UCm3RzJZ4OFMwlp3a0jic0ZzOege6TNVAk5t6J0U,825
|
|
213
|
+
autogen/coding/base.py,sha256=hj70EwB-b0MVzHXACw-Oj3CiHo-GUC5kGZGniDTMOnw,3801
|
|
214
|
+
autogen/coding/docker_commandline_code_executor.py,sha256=njZM__TUdQyIHdIx2tH4DBtptFzjIrQwyxpt2CJgMGo,9900
|
|
215
|
+
autogen/coding/factory.py,sha256=bC3kkIBNExAPt8KZvCQ1PsLpyJWLq1jpw1JcvIbKR04,1978
|
|
216
|
+
autogen/coding/func_with_reqs.py,sha256=dPcjRs4gOjoVO3m5cQYWtFm7FKO94gBYPwr3O7gVj7g,6372
|
|
217
|
+
autogen/coding/local_commandline_code_executor.py,sha256=XKkT141IYZf_HngNJjMcJ7uZXe3k056wMdXZC2hfAts,16671
|
|
218
|
+
autogen/coding/markdown_code_extractor.py,sha256=Hp07a4UIGW85L0oJvP5q2H_98yo0ssQb7k2lPoDu9hY,1650
|
|
219
|
+
autogen/coding/utils.py,sha256=I69g8TrhdXanzRD8DFRq0tuGV7XzIfDh8zkgygkCR6E,2098
|
|
220
|
+
autogen/coding/jupyter/__init__.py,sha256=HsXcVgN_gS2CO0XzeKidjxpipCgV8Dt0zXpK7Q4lArs,830
|
|
221
|
+
autogen/coding/jupyter/base.py,sha256=kZtlulUt655i8Q428zNUN-e4cPsdae3yQn2uEJA01rc,1149
|
|
222
|
+
autogen/coding/jupyter/docker_jupyter_server.py,sha256=YOfF1r2WltV7Yb2akeUOljdEzoMIbQE2mN_CP1H59KE,5872
|
|
223
|
+
autogen/coding/jupyter/embedded_ipython_code_executor.py,sha256=qaMpoRzUTxMocL9riooItgosw80AMpyCzSzybyfTbBU,8116
|
|
224
|
+
autogen/coding/jupyter/import_utils.py,sha256=7yzEAYmNmJsODsqz3XCNOORKfvp0t6xnafOO4KJKm90,2633
|
|
225
|
+
autogen/coding/jupyter/jupyter_client.py,sha256=ROXAWOKG_EJ_oFNuyqUd_3uOBPUTRoTh6_-8bSpXBdU,8674
|
|
226
|
+
autogen/coding/jupyter/jupyter_code_executor.py,sha256=Z2vZvou6QzpMBg0IgOzVRoCADswd15mvfkktIjGhUMY,6374
|
|
227
|
+
autogen/coding/jupyter/local_jupyter_server.py,sha256=7b8yi5qK8ms2e5-PRCrzmXKGp1iC5KgpMU8xiqQ9u8o,6589
|
|
228
|
+
autogen/events/__init__.py,sha256=XwCA6Rsq9AyjgeecGuiwHcAvDQMmKXgGomw5iLDIU5Q,358
|
|
229
|
+
autogen/events/agent_events.py,sha256=jY5WZa4uetm9bp42pMFjpggL_HWNpiJqAG5vAl27bUY,30651
|
|
230
|
+
autogen/events/base_event.py,sha256=5K1wzDBAio9wLxahErSvE0-UbFfMuSTxBp6EI8SbPGU,3475
|
|
231
|
+
autogen/events/client_events.py,sha256=2skE5f9BxQmwJv22vNe-s1ReDXE-DsadeAmMWlrmltc,5466
|
|
232
|
+
autogen/events/helpers.py,sha256=CMcetNzfCE-dWTTJ_9B09of2slRG43yYnHXvFfuGz2Q,1185
|
|
233
|
+
autogen/events/print_event.py,sha256=_B_60nnB0yFwWpv-LT2c-Zp_b-moREtafP4lDI8uJzk,1275
|
|
234
|
+
autogen/extensions/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
235
|
+
autogen/fast_depends/__init__.py,sha256=4KNQsBQmoDf5RIZsnOuMFy7t6-Y1hnKjIplGdbo_k8Y,465
|
|
236
|
+
autogen/fast_depends/_compat.py,sha256=-VucEHRxqqnNETPQV7Q24eouQKQVUxuc0ixRH8CSV14,2797
|
|
237
|
+
autogen/fast_depends/py.typed,sha256=T2j_zfU4zutMBbYt-DnEWSdP7XjLdaS9Tqt5z8VXUgg,288
|
|
238
|
+
autogen/fast_depends/schema.py,sha256=Dy_HmI69_BAWQY_CoqbG7Dp7GIUasIqW34LHT_5WH4s,1939
|
|
239
|
+
autogen/fast_depends/use.py,sha256=VZ02OiSp1puD_7ML5-wQA1S2FL4dE4XfKkZKKF2yndc,7894
|
|
240
|
+
autogen/fast_depends/utils.py,sha256=bVNgAdaNd4UES09tu47muDW-hVBnXIaavVPdxIrqdd8,5282
|
|
241
|
+
autogen/fast_depends/core/__init__.py,sha256=qegYjQCufCOBWZT210C9xXtjmkdiWluVjSF3q26sdSg,410
|
|
242
|
+
autogen/fast_depends/core/build.py,sha256=Q92noDthNoRvoj-SRngTgozyg3EdTy-lQwYxUSDy-kE,7198
|
|
243
|
+
autogen/fast_depends/core/model.py,sha256=6cR8KiRD5S0v2ojhTeW4P4Gfg9gvE7SSCriTfQbJJ9I,16941
|
|
244
|
+
autogen/fast_depends/dependencies/__init__.py,sha256=qoiZscVbv-YWci0ZHjhIA3mAnP5AKCwtnQU-r5AY3LY,441
|
|
245
|
+
autogen/fast_depends/dependencies/model.py,sha256=caWUndsiiu0kiNfeaOvZcmo7OKKahPqn1gyO9VzH6hw,866
|
|
246
|
+
autogen/fast_depends/dependencies/provider.py,sha256=_nCoArOa6yUrAdcYp1bkCK1k770GkBvInDdxZhWn9Hg,1094
|
|
247
|
+
autogen/fast_depends/library/__init__.py,sha256=N4Qse-hGFWumWIowm4N0omd3Qqa15GmP5dzav9oKwNc,348
|
|
248
|
+
autogen/fast_depends/library/model.py,sha256=0WBUzYLGwni-QKQOcnqPQIUG2m60qAUuhG66tKCOlTo,1221
|
|
249
|
+
autogen/interop/__init__.py,sha256=c80dCkG4qyQFk-sE_gxVrxNNoVnbzxmglg7-t3Ut_fU,750
|
|
250
|
+
autogen/interop/interoperability.py,sha256=w7j3fKJZB9kQdIjIJnywe1pvtbdXNz1of9RY2Ny8ECQ,2578
|
|
251
|
+
autogen/interop/interoperable.py,sha256=Im3GgzxUhNOmi4j5MTLYkrUBcaEBvwe6cRI563SPd8I,1486
|
|
252
|
+
autogen/interop/registry.py,sha256=8CFmL7OdYBsajJ7OvOdFTKUwAjUkqKSZOnWJwif0txA,2122
|
|
253
|
+
autogen/interop/crewai/__init__.py,sha256=goeDZTI1PlxNwsLfZWvJMYSUjmsMaJwAPTI6gAHmuyk,225
|
|
254
|
+
autogen/interop/crewai/crewai.py,sha256=CwLjKntWdLCzT22teUxl1ndAdwZIbJ-Y0d97OApIgmE,3243
|
|
255
|
+
autogen/interop/langchain/__init__.py,sha256=8v-kdg4ImQ1Udzd8Y6r7DTvd760SgWkwNKz6NmII41U,336
|
|
256
|
+
autogen/interop/langchain/langchain_chat_model_factory.py,sha256=Jv6Q-SFcaAk9e20fBu92ZZgEEShnUJDqbP5XTZravhE,5591
|
|
257
|
+
autogen/interop/langchain/langchain_tool.py,sha256=2njJVv17ApNiei-ZJvpZhKFderwQIpmOAxNzx_jQmFM,3132
|
|
258
|
+
autogen/interop/litellm/__init__.py,sha256=0K9NkQEBXKZI6UVNwD4daTumQL-uhMrAJE33wiSYmkI,237
|
|
259
|
+
autogen/interop/litellm/litellm_config_factory.py,sha256=Zfc1UvPDQfccz1bxQGmUDLsS0sj-kCBFilrLjHFjSa0,3995
|
|
260
|
+
autogen/interop/pydantic_ai/__init__.py,sha256=w9tqh96x43Ipq2loD_F-kqwws2RFRs7-98mPxWG-Mjc,238
|
|
261
|
+
autogen/interop/pydantic_ai/pydantic_ai.py,sha256=ux0V3J37rrT80FCYwkEui3UjsMwUyLd1yfUOidVa4ks,6680
|
|
262
|
+
autogen/io/__init__.py,sha256=c5iZkM24B9j3K0yPQ0HYJnvAdNMqhlRZVXqcfdnGFX4,600
|
|
263
|
+
autogen/io/base.py,sha256=ThjSXVHhZtSiI-7acRre5XFlBKgMvUyucmDiGNyGAAA,4737
|
|
264
|
+
autogen/io/console.py,sha256=6dYGWntAMgbVX2An14pcs5YyusFsUGeF_-tgR5IMOC0,1892
|
|
265
|
+
autogen/io/run_response.py,sha256=7-3QsrHSV7T3HZeDDuUAYldpZJ2Cit2BJJRp9KHvn0M,9725
|
|
266
|
+
autogen/io/thread_io_stream.py,sha256=iSYyImEOtUHACpRIt561Xu6UL5isUkBL8YUG49QPlYQ,2307
|
|
267
|
+
autogen/io/websockets.py,sha256=Nsx7w9xFZjR2jtB-gfJTQUGBvmZpTLwOQPpdTmn-USU,7474
|
|
268
|
+
autogen/io/processors/__init__.py,sha256=8-znkWyHiESpMktD4cU_id-HPLE7JD7gArj0y-7K7dM,443
|
|
269
|
+
autogen/io/processors/base.py,sha256=60oltHFRWIjZsxzzzK5evPx1M-H0lHZVNVkmItiTNSQ,685
|
|
270
|
+
autogen/io/processors/console_event_processor.py,sha256=Z9xs4Qiq49Cxj1YbPPlrCgZ8KExQE3xqat7heLlZUOk,2103
|
|
271
|
+
autogen/logger/__init__.py,sha256=TTBS92VspksnTQzlMQcCBd-NzYc5UQ1DCrzO4aNvwO4,442
|
|
272
|
+
autogen/logger/base_logger.py,sha256=nMR6IqELN8b-TzqL0-pJyJ6CpIejjp45IYh5tsMQHAE,5040
|
|
273
|
+
autogen/logger/file_logger.py,sha256=EbjDhvPUSP2JX-xAZRplc8JRm6au8ofcjHz-KfXboh4,9796
|
|
274
|
+
autogen/logger/logger_factory.py,sha256=CeLbW3gN0J5zgvQSsRLCSnaiMYusrDWLWovo_Bk-mK8,1391
|
|
275
|
+
autogen/logger/logger_utils.py,sha256=H9hcsRyEcUcfxTYWf5cRjtNghF4h3FT8sr4IIuqQumY,2053
|
|
276
|
+
autogen/logger/sqlite_logger.py,sha256=sRwMx42zh85QWLz1BqKyVySI8OwEB_NjM3ObLOW-mcI,18685
|
|
277
|
+
autogen/mcp/__init__.py,sha256=6BDDmw0sjLZRjyHnd-Gfh9BE-pTKTv5bkow9W6odHtQ,213
|
|
278
|
+
autogen/mcp/mcp_client.py,sha256=7c_lHgBJEs77TFYjLcTlVrEu_0z4EafPPY3PgteY87c,7400
|
|
279
|
+
autogen/messages/__init__.py,sha256=ZuLvvIQRkNE5fotPe6MSS_YzOUkmfIqGSfOZZOZQ3go,321
|
|
280
|
+
autogen/messages/agent_messages.py,sha256=ZnRkdWcKS20lW2Njt740m2YNfKanHt8C3k84KKbzR8E,30414
|
|
281
|
+
autogen/messages/base_message.py,sha256=MbYEXM0dWHl31y7o08PGeJNcpK67hpoQpUMgnZ8qTGE,3808
|
|
282
|
+
autogen/messages/client_messages.py,sha256=9yVn4zug44sLIZQFKiCjOK2ML7uFAADflmGudgPV850,5653
|
|
283
|
+
autogen/messages/print_message.py,sha256=51UpH-rkLrRxz_QxAhEMdjVAipiwkLirOuGtkuTvQL4,1393
|
|
284
|
+
autogen/oai/__init__.py,sha256=BIwnV6wtHmKgIM4IUdymfPfpdNqos5P7BfRv-7_QL9A,1680
|
|
285
|
+
autogen/oai/anthropic.py,sha256=AK_Bbcc5I-PqAvoiwB0LaO1ZLugh_wQNAOIFcj7eTtk,29174
|
|
286
|
+
autogen/oai/bedrock.py,sha256=8AYWZVsDkJS2HmQ0ggoUqlKV_a4H_ON8rks4VW2Jrxk,25719
|
|
287
|
+
autogen/oai/cerebras.py,sha256=8hiSBq88l2yTXUJPV7AvGXRCtwvW0Y9hIYUnYK2S2os,12462
|
|
288
|
+
autogen/oai/client.py,sha256=oy90ySCTmsAO-4p2VF40IZfHAvZdoI6q5_SIq7aLz5g,64571
|
|
289
|
+
autogen/oai/client_utils.py,sha256=lVbHyff7OnpdM-tXskC23xLdFccj2AalTdWA4DxzxS4,7543
|
|
290
|
+
autogen/oai/cohere.py,sha256=pRcQWjbzKbZ1RfC1vk9WGjgndwjHbIaOVoKEYdV2L6c,19421
|
|
291
|
+
autogen/oai/gemini.py,sha256=-SgJaRvJ9cv79Ktpv88ZUTySa7M0n4bC_IcqtvXsmr8,41692
|
|
292
|
+
autogen/oai/gemini_types.py,sha256=pEJFkDhHx91u5_TMFTV9b8nzho0DD5Pgyf3amBeEnCA,4735
|
|
293
|
+
autogen/oai/groq.py,sha256=pQWtaAY_AjT30XKbZNHXDzWsawBys3yFWlfy6K4Nqr8,12431
|
|
294
|
+
autogen/oai/mistral.py,sha256=SlOYPdnNLHuTEHBGCzsemG9sLEgphdUukRurERdMsvI,12677
|
|
295
|
+
autogen/oai/ollama.py,sha256=t0fIgDCoIfsQZ3hhpseam5N-fbpI7-fw82bG55mA8nU,29103
|
|
296
|
+
autogen/oai/openai_utils.py,sha256=4kEu50WeTGGG2uh1fOeMxRIZkEoov-YkkTgx2n5DhkM,38131
|
|
297
|
+
autogen/oai/together.py,sha256=Sj4LOk9RrBG3Bb5IVsrjBYz-hDECCyCgofsCdtk6PSM,14867
|
|
298
|
+
autogen/oai/oai_models/__init__.py,sha256=cILDaaCCvSC3aAX85iLwE1RCpNEokA9925Zse5hX2K4,549
|
|
299
|
+
autogen/oai/oai_models/_models.py,sha256=jr5nlvk7Be4W7wDVnwyjDL6m2CSj0RY1nOL1W3Kq0xI,478
|
|
300
|
+
autogen/oai/oai_models/chat_completion.py,sha256=-swXmkd7jNtOK8jGi84KG-kx1zeYL2roBq0Jco7wKWA,3179
|
|
301
|
+
autogen/oai/oai_models/chat_completion_audio.py,sha256=a55i5E1EnT8qWdiKxbwF2kmgt4fih6x6HaChjs0ZuZE,950
|
|
302
|
+
autogen/oai/oai_models/chat_completion_message.py,sha256=6MbrdgmqoAz0dUuyZZtM4NQd80ljVm3zDpP9_-l5zyw,2808
|
|
303
|
+
autogen/oai/oai_models/chat_completion_message_tool_call.py,sha256=CWuqlwrk8VMSevpOZAMMPyw9KzNVnxEOfYs9y5tN5zw,1206
|
|
304
|
+
autogen/oai/oai_models/chat_completion_token_logprob.py,sha256=GXpNAj2hPKimAW9E00CT2p91xkTqK0XGS63MZ2mYEFo,2071
|
|
305
|
+
autogen/oai/oai_models/completion_usage.py,sha256=WAuvTPlONP3wN1iiWXztp7Zv6e6-ba8ljhBWVy9KIwM,2020
|
|
306
|
+
autogen/tools/__init__.py,sha256=guevGJut7uN2pGpPn9mODaVsTSfeHrGpjjjIEWRBqVo,554
|
|
307
|
+
autogen/tools/dependency_injection.py,sha256=UaLO9QdaVxPLjbKa5ZRuizPagMfg91pa7ohc54mUkDU,8468
|
|
308
|
+
autogen/tools/function_utils.py,sha256=J-3u-Ao_kK7PxqiJMea2P-HGfSTeJTXlWTFSI19IndM,13756
|
|
309
|
+
autogen/tools/tool.py,sha256=1VM5wkPaWrsndCEEYAuFODby0du3raRWCBAGO-kR2xo,7243
|
|
310
|
+
autogen/tools/toolkit.py,sha256=1tOmTGJ96RhkJrrtAViKUyEcwacA6ztoIbYbnf8NgTU,2558
|
|
311
|
+
autogen/tools/contrib/__init__.py,sha256=DWEjPK6xCR2ihAXXdquQZmiuqRLA3Pqb8QV8W1RtS3k,202
|
|
312
|
+
autogen/tools/contrib/time/__init__.py,sha256=dplie5aBJZ8VoKy6EKcQMLTtSgcCkNDYzpdsC2I0YWk,195
|
|
313
|
+
autogen/tools/contrib/time/time.py,sha256=tPi49vOUwfvujbYA-zS00CWcLW-y18CPyQ1gnJG6iRg,1271
|
|
314
|
+
autogen/tools/experimental/__init__.py,sha256=3GcjpvEtTvBNPh0VLoWsSwtox2aDeOXABbyuD4PPln8,1249
|
|
315
|
+
autogen/tools/experimental/browser_use/__init__.py,sha256=kfxCajXcVMDH6CZq-lWh2p8PKxOwT9yjC_Za0jr4zUg,290
|
|
316
|
+
autogen/tools/experimental/browser_use/browser_use.py,sha256=VEYJwUna_DM_HxeI5kgjhtTUzPBYlwrcGk5UOy85gDo,5426
|
|
317
|
+
autogen/tools/experimental/crawl4ai/__init__.py,sha256=UjFJLSZ9P5xT6WCV0RDPtwt4MHuwPdK90TU7ByXhLWs,207
|
|
318
|
+
autogen/tools/experimental/crawl4ai/crawl4ai.py,sha256=MsOLtbPHRpRrCnRJPQVVVNwmsBcgsWLSHNXDOF-47ws,6088
|
|
319
|
+
autogen/tools/experimental/deep_research/__init__.py,sha256=9SFcDEj2OHxNSlXP11lf1uHENlfUeO47ROcOSD9GCDs,220
|
|
320
|
+
autogen/tools/experimental/deep_research/deep_research.py,sha256=1ZwZjVR1gKHvlWaT7I9_8qrEPTCYhManMci4ZHApIdE,14970
|
|
321
|
+
autogen/tools/experimental/duckduckgo/__init__.py,sha256=hstpKQfvd5YD7X0iMuvJFlui3MtJVGbz5XpkOSaoy18,232
|
|
322
|
+
autogen/tools/experimental/duckduckgo/duckduckgo_search.py,sha256=NCByIKfJz9CXj_IuRQdM8cIEwP_p_ZIt9aFpOjVfzYc,3532
|
|
323
|
+
autogen/tools/experimental/google/__init__.py,sha256=_j5i9rzajzilQetKCPh5QkX60p1iOri2Yw69zIKAdU0,461
|
|
324
|
+
autogen/tools/experimental/google/model.py,sha256=hm3ynXSJAjeld85iSHo9QgIehoWEqeVhbSPC3EaHm0M,515
|
|
325
|
+
autogen/tools/experimental/google/toolkit_protocol.py,sha256=Jg9aSy4sKDr-yYVxevYr7zbEcmA9EwFWrJBOogLfKJU,485
|
|
326
|
+
autogen/tools/experimental/google/authentication/__init__.py,sha256=9xmOghr2lpxrh7yNOyISFP3z2ZoL4kN0lzBDoMzyglE,361
|
|
327
|
+
autogen/tools/experimental/google/authentication/credentials_hosted_provider.py,sha256=LdMhmMGqCcgQNsw3xeteSwTlKp-UkTWJJLUxJx7lewA,1268
|
|
328
|
+
autogen/tools/experimental/google/authentication/credentials_local_provider.py,sha256=g3ewwhahtEYHyUj4a2hWVWyaLg7nik_2kocsKl2T8ZE,3357
|
|
329
|
+
autogen/tools/experimental/google/authentication/credentials_provider.py,sha256=mQZx7tDn8FzV0U31Nf27tjTjgFK8x8MxK67i_sG8e28,980
|
|
330
|
+
autogen/tools/experimental/google/drive/__init__.py,sha256=UlZiMgZD5xKj1rou3iS9qHAprkqhJMWpESJmLFT8HXE,225
|
|
331
|
+
autogen/tools/experimental/google/drive/drive_functions.py,sha256=5vuSm1c74gWON6pihhd0AJEeHgROyqh0at3Q6ZuS0nI,4497
|
|
332
|
+
autogen/tools/experimental/google/drive/toolkit.py,sha256=rtnIg4bPbRm0yA6FozoJobtx-jkF2t-1IOs9lltHEJk,3414
|
|
333
|
+
autogen/tools/experimental/google_search/__init__.py,sha256=_4eCvmps86qChxDfPw-R9I6-05xKFtYMX-mww8-OhZE,287
|
|
334
|
+
autogen/tools/experimental/google_search/google_search.py,sha256=sA1jE-ykijeObFzcfnOVgvnCG_zW2ULQXUPN2C_H3ww,3857
|
|
335
|
+
autogen/tools/experimental/google_search/youtube_search.py,sha256=liSdEdfJi-728ha8cXE4oBMcrizcmwDQR5Tkvw4mKME,6386
|
|
336
|
+
autogen/tools/experimental/messageplatform/__init__.py,sha256=R_DBu-edxl8iDJSUVsByqiNVgPZzKB5qJERQ8KLknrI,536
|
|
337
|
+
autogen/tools/experimental/messageplatform/discord/__init__.py,sha256=QUdlQ_qOpLv_78txQyTURRw86GcLrYI7UwQU-5aoxK4,256
|
|
338
|
+
autogen/tools/experimental/messageplatform/discord/discord.py,sha256=xc_Zs-5IVGdgp2WpKSfShwE6Pnq_efNeIP8yZBZERKE,12427
|
|
339
|
+
autogen/tools/experimental/messageplatform/slack/__init__.py,sha256=LzsMMPw-_K1kt8L17js0sSematFF8GfX4h-aI6jKB0k,300
|
|
340
|
+
autogen/tools/experimental/messageplatform/slack/slack.py,sha256=C8jnv6o1MXAbfKfJ-gbqLB7IZtvo32OnfSulrGz1glc,18834
|
|
341
|
+
autogen/tools/experimental/messageplatform/telegram/__init__.py,sha256=gPhyMHRvuCn3s2j6b9UFEte0yCC2gFYgTiVHTBrM4dc,261
|
|
342
|
+
autogen/tools/experimental/messageplatform/telegram/telegram.py,sha256=i_rSZO8hgWcYrNKuRsgGVeIkIaw737IonPQtk7K5FjE,12332
|
|
343
|
+
autogen/tools/experimental/perplexity/__init__.py,sha256=VxWG2HfcxwBhLUV4LnAlte9T2dH5dXIy-78gkPVfwSI,232
|
|
344
|
+
autogen/tools/experimental/perplexity/perplexity_search.py,sha256=UZtyS9Pde3_VXufuZVuiBw87MiOiAWwVyXqstzE7Rlk,9976
|
|
345
|
+
autogen/tools/experimental/tavily/__init__.py,sha256=rvztagn7FpWiXZwJtZmKbIFBteBenaedwsiUViDyC4Y,220
|
|
346
|
+
autogen/tools/experimental/tavily/tavily_search.py,sha256=S1Aj519kaEIwOAJXTc9Y__GHyY--vvc-P-5nh3ksCOQ,7810
|
|
347
|
+
autogen/tools/experimental/web_search_preview/__init__.py,sha256=8vd1XWS14883MQ4U4dHvMP8aAKAtMILLnqRJNzgNh6A,233
|
|
348
|
+
autogen/tools/experimental/web_search_preview/web_search_preview.py,sha256=bLKZSl0670uh82C3OCceRD0WaRfEPtQ4o06PTsQ3kKk,4818
|
|
349
|
+
autogen/tools/experimental/wikipedia/__init__.py,sha256=jS_gUMyz-uCWr75yKv2esIiGz0ijNDNokt6wovQULLE,274
|
|
350
|
+
autogen/tools/experimental/wikipedia/wikipedia.py,sha256=Cw7luG34J6if_5D40C_039BTA6l_LvOiEg6FY5UysC4,11545
|
|
351
|
+
autogen/agentchat/contrib/captainagent/tools/README.md,sha256=454O-irP4gjSdYnFgoE0i3BfueXO0qFONxe3GMxMpHg,1677
|
|
352
|
+
autogen/agentchat/contrib/captainagent/tools/__init__.py,sha256=tOTe4nwbKj7elHpftAy3zS_embMDzncrKL98XKhY6-c,168
|
|
353
|
+
autogen/agentchat/contrib/captainagent/tools/requirements.txt,sha256=z2uZXzuO-MT_d0EPrk9G3Ct2cQeS-KTj0p7HdgqiEYg,110
|
|
354
|
+
autogen/agentchat/contrib/captainagent/tools/tool_description.tsv,sha256=FoTCONw59WUTNswa23ze6a2MOyvCuhZ8TZddPdU1ACE,3857
|
|
355
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_correlation.py,sha256=7w4d_ica3WBK6xwdblTU9S-tfzhHyrOHYWvU4Bs-08c,1712
|
|
356
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_skewness_and_kurtosis.py,sha256=XHBUs7g3MSJNVNe1dLUl3fu93OsVSDeDL_N-NZRmk4o,955
|
|
357
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_iqr.py,sha256=sh9X19sBWo7MPheBBW0oxWjVThjqTA9sg0d0Qe9L5xw,987
|
|
358
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_zscore.py,sha256=lUZrd55FpkIP5mbAa4ZTMLuGdMlfX4LHF_Y6HCFEGXo,1156
|
|
359
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/explore_csv.py,sha256=E-uSeRbIWdkqePa9mdPJrlXRk1xreQS8QzeA80WgFmE,717
|
|
360
|
+
autogen/agentchat/contrib/captainagent/tools/data_analysis/shapiro_wilk_test.py,sha256=q-jzsu43UnlPFwhqnYYDE0SHLCXv6Z7o3V83eNASM0k,904
|
|
361
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_download.py,sha256=e8dcovrQBmKuvrlR6iNgSY7W_kU3NyqMHhjYUw0ucwY,966
|
|
362
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_search.py,sha256=gXVR-uXxML9Eoce5O96BuASvHeMwMILSdnoMFw15tqo,2062
|
|
363
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_image.py,sha256=WoOehyC_-qZEI2Tfvspel0fxdtGYdjlBUgKcMCtFi6M,1841
|
|
364
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_text.py,sha256=Jnq8BKHHUBzMac7joZtHzY3VxJGO48aKi6XIJu2UyQ0,1107
|
|
365
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_wikipedia_text.py,sha256=N89cJkKsWWOVZ81LFGCML_lckqd6cRtqMXb2xIw_Lms,680
|
|
366
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_youtube_caption.py,sha256=97vxZvTUtQvo7JbHVah8tFvLoIPPdc6Y_1WnSjP-yMY,1105
|
|
367
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/image_qa.py,sha256=clFskT2gTGK9cIMvn7zVC-a6xEavAM3ScVyQLc-TPZY,2203
|
|
368
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/optical_character_recognition.py,sha256=xtSkJ8vXrkpKqCjhgmkChpXcXZHDnS4BgUPXoLaTcck,1936
|
|
369
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/perform_web_search.py,sha256=Gu-s9NobPkdaQCtncpeRHfMR5X7T76srhnpTCQFft9A,1545
|
|
370
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/scrape_wikipedia_tables.py,sha256=xqhIwo6xeUGvnA1e2GFmYJ-2dxFoNqCjZW6ettRgITI,1346
|
|
371
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/transcribe_audio_file.py,sha256=N9D6dy3709oppcZszBHkwO0f7oHe9DzCrahE-ofZY_g,615
|
|
372
|
+
autogen/agentchat/contrib/captainagent/tools/information_retrieval/youtube_download.py,sha256=JH-jKe0gKFqLGOgWg6ppjD0kUcp3rV-1Y3g1Qu1Yf5s,1020
|
|
373
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_circle_area_from_diameter.py,sha256=cVuexCoTOzFS4icvZS4s7XFs9D5rYV1Am9eJGDj9Jsk,556
|
|
374
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_day_of_the_week.py,sha256=W8a0qb1v1BuDmvXkehbH8wY6Dw1qayQSMWGX81Vb6R0,803
|
|
375
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_fraction_sum.py,sha256=8rESE7EqQtWJHpghq1_pqRWjzKtYfj3Ki9XhaQqXpHY,1265
|
|
376
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_matrix_power.py,sha256=iG7tJH_cTB2Jw9BV9onsJGmLZnhCrbZrU8QG3ANIEZM,946
|
|
377
|
+
autogen/agentchat/contrib/captainagent/tools/math/calculate_reflected_point.py,sha256=Iv4ccq1RgXXWdxicoNN_ee3vEfmVeesLDcCbrZ2SlIU,709
|
|
378
|
+
autogen/agentchat/contrib/captainagent/tools/math/complex_numbers_product.py,sha256=Ah8cyJNU9vH6W2OvCgqXUE75dGY5Bu9TCZn3uBHmvLQ,816
|
|
379
|
+
autogen/agentchat/contrib/captainagent/tools/math/compute_currency_conversion.py,sha256=lC0unY_a1KIt1P42YJbXqWAsFQn-sCKxmkYXnPw2BW0,851
|
|
380
|
+
autogen/agentchat/contrib/captainagent/tools/math/count_distinct_permutations.py,sha256=-vmRV2irJ3B-qvSxP3TrbWWnRP44D_r5rRzO1s9_v44,873
|
|
381
|
+
autogen/agentchat/contrib/captainagent/tools/math/evaluate_expression.py,sha256=-aGQ5PhCKosldV0ocKlULnxW4ar6YZI-F4GsCDdLi3U,1051
|
|
382
|
+
autogen/agentchat/contrib/captainagent/tools/math/find_continuity_point.py,sha256=HoXMaaSu7D-rLP-wwE2Ci4ZYcyqFKYEJc4e5zSEmgXU,1277
|
|
383
|
+
autogen/agentchat/contrib/captainagent/tools/math/fraction_to_mixed_numbers.py,sha256=iTE65cODujSAQrj1W1fxz2N1zOfxsf5P0Rb38YE312Q,1659
|
|
384
|
+
autogen/agentchat/contrib/captainagent/tools/math/modular_inverse_sum.py,sha256=XEmQFbEkqljKGD5KGpoHTazJr3poFz6-ZFfBtYqzg3Y,769
|
|
385
|
+
autogen/agentchat/contrib/captainagent/tools/math/simplify_mixed_numbers.py,sha256=iqgpFJdyBHPPNCqkehSIbeuV8Rabr2eDMilT23Wx7PI,1687
|
|
386
|
+
autogen/agentchat/contrib/captainagent/tools/math/sum_of_digit_factorials.py,sha256=-6T5r6Er4mONPldRxv3F9tLoE7Og3qmeSeTC7Du_tTg,596
|
|
387
|
+
autogen/agentchat/contrib/captainagent/tools/math/sum_of_primes_below.py,sha256=Xig7K3A3DRnbv-UXfyo5bybGZUQYAQsltthfTYW5eV8,509
|
|
388
|
+
ag2-0.9.1.post0.dist-info/METADATA,sha256=8X27ld0Dx4bVu445ftjyKFBba9qooBmme159PBE1L78,34793
|
|
389
|
+
ag2-0.9.1.post0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
390
|
+
ag2-0.9.1.post0.dist-info/licenses/LICENSE,sha256=GEFQVNayAR-S_rQD5l8hPdgvgyktVdy4Bx5-v90IfRI,11384
|
|
391
|
+
ag2-0.9.1.post0.dist-info/licenses/NOTICE.md,sha256=07iCPQGbth4pQrgkSgZinJGT5nXddkZ6_MGYcBd2oiY,1134
|
|
392
|
+
ag2-0.9.1.post0.dist-info/RECORD,,
|
autogen/__init__.py
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# Copyright (c) 2023 - 2025, AG2ai, Inc., AG2ai open-source projects maintainers and core contributors
|
|
2
|
+
#
|
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
#
|
|
5
|
+
# Portions derived from https://github.com/microsoft/autogen are under the MIT License.
|
|
6
|
+
# SPDX-License-Identifier: MIT
|
|
7
|
+
import logging
|
|
8
|
+
|
|
9
|
+
from .agentchat import (
|
|
10
|
+
Agent,
|
|
11
|
+
AssistantAgent,
|
|
12
|
+
ChatResult,
|
|
13
|
+
ConversableAgent,
|
|
14
|
+
GroupChat,
|
|
15
|
+
GroupChatManager,
|
|
16
|
+
UpdateSystemMessage,
|
|
17
|
+
UserProxyAgent,
|
|
18
|
+
a_initiate_swarm_chat,
|
|
19
|
+
a_run_swarm,
|
|
20
|
+
gather_usage_summary,
|
|
21
|
+
initiate_chats,
|
|
22
|
+
register_function,
|
|
23
|
+
run_swarm,
|
|
24
|
+
)
|
|
25
|
+
from .agentchat.group.context_expression import ContextExpression
|
|
26
|
+
from .code_utils import DEFAULT_MODEL, FAST_MODEL
|
|
27
|
+
from .exception_utils import (
|
|
28
|
+
AgentNameConflictError,
|
|
29
|
+
InvalidCarryOverTypeError,
|
|
30
|
+
NoEligibleSpeakerError,
|
|
31
|
+
SenderRequiredError,
|
|
32
|
+
UndefinedNextAgentError,
|
|
33
|
+
)
|
|
34
|
+
from .llm_config import LLMConfig
|
|
35
|
+
from .oai import (
|
|
36
|
+
Cache,
|
|
37
|
+
ModelClient,
|
|
38
|
+
OpenAIWrapper,
|
|
39
|
+
config_list_from_dotenv,
|
|
40
|
+
config_list_from_json,
|
|
41
|
+
config_list_from_models,
|
|
42
|
+
config_list_gpt4_gpt35,
|
|
43
|
+
config_list_openai_aoai,
|
|
44
|
+
filter_config,
|
|
45
|
+
get_config_list,
|
|
46
|
+
)
|
|
47
|
+
from .version import __version__
|
|
48
|
+
|
|
49
|
+
# Set the root logger.
|
|
50
|
+
logger = logging.getLogger(__name__)
|
|
51
|
+
logger.setLevel(logging.INFO)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
__all__ = [
|
|
55
|
+
"DEFAULT_MODEL",
|
|
56
|
+
"FAST_MODEL",
|
|
57
|
+
"Agent",
|
|
58
|
+
"AgentNameConflictError",
|
|
59
|
+
"AssistantAgent",
|
|
60
|
+
"Cache",
|
|
61
|
+
"ChatResult",
|
|
62
|
+
"ContextExpression",
|
|
63
|
+
"ConversableAgent",
|
|
64
|
+
"GroupChat",
|
|
65
|
+
"GroupChatManager",
|
|
66
|
+
"InvalidCarryOverTypeError",
|
|
67
|
+
"LLMConfig",
|
|
68
|
+
"ModelClient",
|
|
69
|
+
"NoEligibleSpeakerError",
|
|
70
|
+
"OpenAIWrapper",
|
|
71
|
+
"SenderRequiredError",
|
|
72
|
+
"UndefinedNextAgentError",
|
|
73
|
+
"UpdateSystemMessage",
|
|
74
|
+
"UserProxyAgent",
|
|
75
|
+
"__version__",
|
|
76
|
+
"a_initiate_swarm_chat",
|
|
77
|
+
"a_run_swarm",
|
|
78
|
+
"config_list_from_dotenv",
|
|
79
|
+
"config_list_from_json",
|
|
80
|
+
"config_list_from_models",
|
|
81
|
+
"config_list_gpt4_gpt35",
|
|
82
|
+
"config_list_openai_aoai",
|
|
83
|
+
"filter_config",
|
|
84
|
+
"gather_usage_summary",
|
|
85
|
+
"get_config_list",
|
|
86
|
+
"initiate_chats",
|
|
87
|
+
"register_function",
|
|
88
|
+
"run_swarm",
|
|
89
|
+
]
|