ag2 0.9.6__tar.gz → 0.9.8.post1__tar.gz
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.8.post1/.github/workflows/build-docs.yml +68 -0
- ag2-0.9.8.post1/.github/workflows/build-mkdocs.yml +70 -0
- ag2-0.9.8.post1/.github/workflows/contrib-graph-rag-tests.yml +213 -0
- ag2-0.9.8.post1/.github/workflows/contrib-llm-test.yml +219 -0
- ag2-0.9.8.post1/.github/workflows/contrib-test.yml +850 -0
- ag2-0.9.8.post1/.github/workflows/core-llm-test.yml +101 -0
- ag2-0.9.8.post1/.github/workflows/core-test.yml +135 -0
- ag2-0.9.8.post1/.github/workflows/docs-check-broken-links.yml +31 -0
- ag2-0.9.8.post1/.github/workflows/integration-test.yml +131 -0
- ag2-0.9.8.post1/.github/workflows/lfs-check.yml +19 -0
- ag2-0.9.8.post1/.github/workflows/mkdocs-check-broken-links.yml +25 -0
- ag2-0.9.8.post1/.github/workflows/pr-checks.yml +166 -0
- ag2-0.9.8.post1/.github/workflows/python-package.yml +67 -0
- ag2-0.9.8.post1/.github/workflows/test-with-optional-deps.yml +194 -0
- ag2-0.9.8.post1/.github/workflows/type-check.yml +78 -0
- ag2-0.9.8.post1/.gitignore +206 -0
- ag2-0.9.8.post1/.pre-commit-config.yaml +121 -0
- ag2-0.9.8.post1/CONTRIBUTING.md +1 -0
- ag2-0.9.8.post1/PKG-INFO +790 -0
- ag2-0.9.8.post1/README.md +444 -0
- ag2-0.9.8.post1/autogen/__init__.py +88 -0
- ag2-0.9.8.post1/autogen/_website/generate_api_references.py +426 -0
- ag2-0.9.8.post1/autogen/_website/generate_mkdocs.py +1168 -0
- ag2-0.9.8.post1/autogen/_website/notebook_processor.py +475 -0
- ag2-0.9.8.post1/autogen/_website/process_notebooks.py +656 -0
- ag2-0.9.8.post1/autogen/_website/utils.py +413 -0
- ag2-0.9.8.post1/autogen/agentchat/agent.py +182 -0
- ag2-0.9.8.post1/autogen/agentchat/assistant_agent.py +86 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/agent_eval/agent_eval.py +108 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/agent_eval/critic_agent.py +44 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/agent_eval/quantifier_agent.py +39 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/agent_eval/subcritic_agent.py +45 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/agent_optimizer.py +432 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/capabilities/generate_images.py +301 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/capabilities/teachability.py +393 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/capabilities/transforms.py +578 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/capabilities/transforms_util.py +122 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/capabilities/vision_capability.py +215 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/captainagent/agent_builder.py +790 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/captainagent/captainagent.py +513 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/captainagent/tool_retriever.py +334 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/gpt_assistant_agent.py +526 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/graph_rag/document.py +29 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py +170 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py +103 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/graph_rag/graph_query_engine.py +53 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py +262 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py +83 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py +210 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py +93 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/img_utils.py +397 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/llamaindex_conversable_agent.py +117 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/llava_agent.py +201 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/math_user_proxy_agent.py +464 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/multimodal_conversable_agent.py +125 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +325 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/rag/chromadb_query_engine.py +268 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/rag/llamaindex_query_engine.py +195 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/rag/mongodb_query_engine.py +319 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/rag/query_engine.py +76 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/retrieve_assistant_agent.py +56 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/retrieve_user_proxy_agent.py +704 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/society_of_mind_agent.py +200 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/swarm_agent.py +1403 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/text_analyzer_agent.py +79 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/vectordb/base.py +224 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/vectordb/chromadb.py +316 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/vectordb/couchbase.py +405 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/vectordb/mongodb.py +551 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/vectordb/pgvectordb.py +927 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/vectordb/qdrant.py +320 -0
- ag2-0.9.8.post1/autogen/agentchat/contrib/web_surfer.py +304 -0
- ag2-0.9.8.post1/autogen/agentchat/conversable_agent.py +4085 -0
- ag2-0.9.8.post1/autogen/agentchat/group/context_str.py +39 -0
- ag2-0.9.8.post1/autogen/agentchat/group/context_variables.py +182 -0
- ag2-0.9.8.post1/autogen/agentchat/group/group_tool_executor.py +202 -0
- ag2-0.9.8.post1/autogen/agentchat/group/group_utils.py +645 -0
- ag2-0.9.8.post1/autogen/agentchat/group/guardrails.py +171 -0
- ag2-0.9.8.post1/autogen/agentchat/group/handoffs.py +303 -0
- ag2-0.9.8.post1/autogen/agentchat/group/multi_agent_chat.py +237 -0
- ag2-0.9.8.post1/autogen/agentchat/group/on_condition.py +55 -0
- ag2-0.9.8.post1/autogen/agentchat/group/on_context_condition.py +51 -0
- ag2-0.9.8.post1/autogen/agentchat/group/patterns/auto.py +160 -0
- ag2-0.9.8.post1/autogen/agentchat/group/patterns/manual.py +177 -0
- ag2-0.9.8.post1/autogen/agentchat/group/patterns/pattern.py +295 -0
- ag2-0.9.8.post1/autogen/agentchat/group/patterns/random.py +106 -0
- ag2-0.9.8.post1/autogen/agentchat/group/patterns/round_robin.py +117 -0
- ag2-0.9.8.post1/autogen/agentchat/group/reply_result.py +24 -0
- ag2-0.9.8.post1/autogen/agentchat/group/speaker_selection_result.py +41 -0
- ag2-0.9.8.post1/autogen/agentchat/group/targets/group_chat_target.py +133 -0
- ag2-0.9.8.post1/autogen/agentchat/group/targets/group_manager_target.py +151 -0
- ag2-0.9.8.post1/autogen/agentchat/group/targets/transition_target.py +424 -0
- ag2-0.9.8.post1/autogen/agentchat/groupchat.py +1778 -0
- ag2-0.9.8.post1/autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py +148 -0
- ag2-0.9.8.post1/autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py +139 -0
- ag2-0.9.8.post1/autogen/agentchat/realtime/experimental/clients/gemini/client.py +274 -0
- ag2-0.9.8.post1/autogen/agentchat/realtime/experimental/clients/oai/base_client.py +220 -0
- ag2-0.9.8.post1/autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py +243 -0
- ag2-0.9.8.post1/autogen/agentchat/realtime/experimental/clients/realtime_client.py +191 -0
- ag2-0.9.8.post1/autogen/agentchat/realtime/experimental/realtime_agent.py +159 -0
- ag2-0.9.8.post1/autogen/agentchat/realtime/experimental/realtime_observer.py +100 -0
- ag2-0.9.8.post1/autogen/agentchat/realtime/experimental/realtime_swarm.py +485 -0
- ag2-0.9.8.post1/autogen/agentchat/user_proxy_agent.py +112 -0
- ag2-0.9.8.post1/autogen/agentchat/utils.py +206 -0
- ag2-0.9.8.post1/autogen/agents/contrib/time/time_reply_agent.py +74 -0
- ag2-0.9.8.post1/autogen/agents/contrib/time/time_tool_agent.py +52 -0
- ag2-0.9.8.post1/autogen/agents/experimental/deep_research/deep_research.py +52 -0
- ag2-0.9.8.post1/autogen/agents/experimental/discord/discord.py +66 -0
- ag2-0.9.8.post1/autogen/agents/experimental/document_agent/chroma_query_engine.py +301 -0
- ag2-0.9.8.post1/autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py +113 -0
- ag2-0.9.8.post1/autogen/agents/experimental/document_agent/document_agent.py +652 -0
- ag2-0.9.8.post1/autogen/agents/experimental/document_agent/document_conditions.py +50 -0
- ag2-0.9.8.post1/autogen/agents/experimental/document_agent/document_utils.py +376 -0
- ag2-0.9.8.post1/autogen/agents/experimental/document_agent/inmemory_query_engine.py +214 -0
- ag2-0.9.8.post1/autogen/agents/experimental/document_agent/parser_utils.py +130 -0
- ag2-0.9.8.post1/autogen/agents/experimental/document_agent/url_utils.py +417 -0
- ag2-0.9.8.post1/autogen/agents/experimental/reasoning/reasoning_agent.py +1178 -0
- ag2-0.9.8.post1/autogen/agents/experimental/slack/slack.py +73 -0
- ag2-0.9.8.post1/autogen/agents/experimental/telegram/telegram.py +76 -0
- ag2-0.9.8.post1/autogen/agents/experimental/websurfer/websurfer.py +70 -0
- ag2-0.9.8.post1/autogen/agents/experimental/wikipedia/wikipedia.py +88 -0
- ag2-0.9.8.post1/autogen/browser_utils.py +309 -0
- ag2-0.9.8.post1/autogen/cache/abstract_cache_base.py +75 -0
- ag2-0.9.8.post1/autogen/cache/cache.py +203 -0
- ag2-0.9.8.post1/autogen/cache/cache_factory.py +88 -0
- ag2-0.9.8.post1/autogen/cache/cosmos_db_cache.py +144 -0
- ag2-0.9.8.post1/autogen/cache/disk_cache.py +102 -0
- ag2-0.9.8.post1/autogen/cache/in_memory_cache.py +58 -0
- ag2-0.9.8.post1/autogen/cache/redis_cache.py +123 -0
- ag2-0.9.8.post1/autogen/code_utils.py +598 -0
- ag2-0.9.8.post1/autogen/coding/base.py +119 -0
- ag2-0.9.8.post1/autogen/coding/docker_commandline_code_executor.py +288 -0
- ag2-0.9.8.post1/autogen/coding/func_with_reqs.py +203 -0
- ag2-0.9.8.post1/autogen/coding/jupyter/base.py +36 -0
- ag2-0.9.8.post1/autogen/coding/jupyter/docker_jupyter_server.py +166 -0
- ag2-0.9.8.post1/autogen/coding/jupyter/import_utils.py +82 -0
- ag2-0.9.8.post1/autogen/coding/jupyter/jupyter_client.py +231 -0
- ag2-0.9.8.post1/autogen/coding/jupyter/jupyter_code_executor.py +159 -0
- ag2-0.9.8.post1/autogen/coding/jupyter/local_jupyter_server.py +168 -0
- ag2-0.9.8.post1/autogen/coding/local_commandline_code_executor.py +406 -0
- ag2-0.9.8.post1/autogen/coding/markdown_code_extractor.py +44 -0
- ag2-0.9.8.post1/autogen/coding/utils.py +55 -0
- ag2-0.9.8.post1/autogen/doc_utils.py +35 -0
- ag2-0.9.8.post1/autogen/environments/docker_python_environment.py +365 -0
- ag2-0.9.8.post1/autogen/environments/python_environment.py +125 -0
- ag2-0.9.8.post1/autogen/environments/system_python_environment.py +85 -0
- ag2-0.9.8.post1/autogen/environments/venv_python_environment.py +220 -0
- ag2-0.9.8.post1/autogen/environments/working_directory.py +74 -0
- ag2-0.9.8.post1/autogen/events/agent_events.py +1016 -0
- ag2-0.9.8.post1/autogen/events/base_event.py +100 -0
- ag2-0.9.8.post1/autogen/events/client_events.py +168 -0
- ag2-0.9.8.post1/autogen/events/helpers.py +44 -0
- ag2-0.9.8.post1/autogen/events/print_event.py +45 -0
- ag2-0.9.8.post1/autogen/fast_depends/_compat.py +75 -0
- ag2-0.9.8.post1/autogen/fast_depends/core/build.py +206 -0
- ag2-0.9.8.post1/autogen/fast_depends/core/model.py +527 -0
- ag2-0.9.8.post1/autogen/fast_depends/dependencies/model.py +30 -0
- ag2-0.9.8.post1/autogen/fast_depends/dependencies/provider.py +40 -0
- ag2-0.9.8.post1/autogen/fast_depends/library/model.py +46 -0
- ag2-0.9.8.post1/autogen/fast_depends/schema.py +66 -0
- ag2-0.9.8.post1/autogen/fast_depends/use.py +272 -0
- ag2-0.9.8.post1/autogen/fast_depends/utils.py +167 -0
- ag2-0.9.8.post1/autogen/formatting_utils.py +83 -0
- ag2-0.9.8.post1/autogen/graph_utils.py +175 -0
- ag2-0.9.8.post1/autogen/import_utils.py +526 -0
- ag2-0.9.8.post1/autogen/interop/crewai/crewai.py +88 -0
- ag2-0.9.8.post1/autogen/interop/interoperable.py +46 -0
- ag2-0.9.8.post1/autogen/interop/langchain/langchain_chat_model_factory.py +156 -0
- ag2-0.9.8.post1/autogen/interop/langchain/langchain_tool.py +78 -0
- ag2-0.9.8.post1/autogen/interop/litellm/litellm_config_factory.py +178 -0
- ag2-0.9.8.post1/autogen/interop/pydantic_ai/pydantic_ai.py +165 -0
- ag2-0.9.8.post1/autogen/interop/registry.py +70 -0
- ag2-0.9.8.post1/autogen/io/base.py +151 -0
- ag2-0.9.8.post1/autogen/io/run_response.py +294 -0
- ag2-0.9.8.post1/autogen/io/websockets.py +214 -0
- ag2-0.9.8.post1/autogen/json_utils.py +42 -0
- ag2-0.9.8.post1/autogen/llm_config/__init__.py +11 -0
- ag2-0.9.8.post1/autogen/llm_config/client.py +58 -0
- ag2-0.9.8.post1/autogen/llm_config/config.py +384 -0
- ag2-0.9.8.post1/autogen/llm_config/entry.py +154 -0
- ag2-0.9.8.post1/autogen/logger/base_logger.py +129 -0
- ag2-0.9.8.post1/autogen/logger/file_logger.py +262 -0
- ag2-0.9.8.post1/autogen/logger/logger_factory.py +42 -0
- ag2-0.9.8.post1/autogen/logger/logger_utils.py +57 -0
- ag2-0.9.8.post1/autogen/logger/sqlite_logger.py +524 -0
- ag2-0.9.8.post1/autogen/math_utils.py +338 -0
- ag2-0.9.8.post1/autogen/mcp/__main__.py +78 -0
- ag2-0.9.8.post1/autogen/mcp/helpers.py +45 -0
- ag2-0.9.8.post1/autogen/mcp/mcp_client.py +349 -0
- ag2-0.9.8.post1/autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py +62 -0
- ag2-0.9.8.post1/autogen/mcp/mcp_proxy/mcp_proxy.py +577 -0
- ag2-0.9.8.post1/autogen/mcp/mcp_proxy/operation_grouping.py +157 -0
- ag2-0.9.8.post1/autogen/mcp/mcp_proxy/operation_renaming.py +110 -0
- ag2-0.9.8.post1/autogen/mcp/mcp_proxy/security.py +399 -0
- ag2-0.9.8.post1/autogen/messages/agent_messages.py +946 -0
- ag2-0.9.8.post1/autogen/messages/base_message.py +108 -0
- ag2-0.9.8.post1/autogen/messages/client_messages.py +172 -0
- ag2-0.9.8.post1/autogen/messages/print_message.py +48 -0
- ag2-0.9.8.post1/autogen/oai/__init__.py +52 -0
- ag2-0.9.8.post1/autogen/oai/anthropic.py +715 -0
- ag2-0.9.8.post1/autogen/oai/bedrock.py +639 -0
- ag2-0.9.8.post1/autogen/oai/cerebras.py +300 -0
- ag2-0.9.8.post1/autogen/oai/client.py +1488 -0
- ag2-0.9.8.post1/autogen/oai/client_utils.py +169 -0
- ag2-0.9.8.post1/autogen/oai/cohere.py +502 -0
- ag2-0.9.8.post1/autogen/oai/gemini.py +1045 -0
- ag2-0.9.8.post1/autogen/oai/gemini_types.py +155 -0
- ag2-0.9.8.post1/autogen/oai/groq.py +317 -0
- ag2-0.9.8.post1/autogen/oai/mistral.py +309 -0
- ag2-0.9.8.post1/autogen/oai/oai_models/__init__.py +23 -0
- ag2-0.9.8.post1/autogen/oai/oai_models/_models.py +16 -0
- ag2-0.9.8.post1/autogen/oai/oai_models/chat_completion.py +86 -0
- ag2-0.9.8.post1/autogen/oai/oai_models/chat_completion_message.py +88 -0
- ag2-0.9.8.post1/autogen/oai/oai_models/chat_completion_message_tool_call.py +60 -0
- ag2-0.9.8.post1/autogen/oai/oai_models/chat_completion_token_logprob.py +62 -0
- ag2-0.9.8.post1/autogen/oai/oai_models/completion_usage.py +59 -0
- ag2-0.9.8.post1/autogen/oai/ollama.py +655 -0
- ag2-0.9.8.post1/autogen/oai/openai_responses.py +449 -0
- ag2-0.9.8.post1/autogen/oai/openai_utils.py +955 -0
- ag2-0.9.8.post1/autogen/oai/together.py +385 -0
- ag2-0.9.8.post1/autogen/retrieve_utils.py +490 -0
- ag2-0.9.8.post1/autogen/runtime_logging.py +161 -0
- ag2-0.9.8.post1/autogen/token_count_utils.py +270 -0
- ag2-0.9.8.post1/autogen/tools/contrib/time/time.py +40 -0
- ag2-0.9.8.post1/autogen/tools/dependency_injection.py +253 -0
- ag2-0.9.8.post1/autogen/tools/experimental/browser_use/browser_use.py +154 -0
- ag2-0.9.8.post1/autogen/tools/experimental/code_execution/python_code_execution.py +86 -0
- ag2-0.9.8.post1/autogen/tools/experimental/crawl4ai/crawl4ai.py +150 -0
- ag2-0.9.8.post1/autogen/tools/experimental/deep_research/deep_research.py +329 -0
- ag2-0.9.8.post1/autogen/tools/experimental/duckduckgo/duckduckgo_search.py +103 -0
- ag2-0.9.8.post1/autogen/tools/experimental/firecrawl/firecrawl_tool.py +836 -0
- ag2-0.9.8.post1/autogen/tools/experimental/google/authentication/credentials_local_provider.py +91 -0
- ag2-0.9.8.post1/autogen/tools/experimental/google/drive/drive_functions.py +124 -0
- ag2-0.9.8.post1/autogen/tools/experimental/google/drive/toolkit.py +88 -0
- ag2-0.9.8.post1/autogen/tools/experimental/google_search/google_search.py +93 -0
- ag2-0.9.8.post1/autogen/tools/experimental/google_search/youtube_search.py +181 -0
- ag2-0.9.8.post1/autogen/tools/experimental/messageplatform/discord/discord.py +284 -0
- ag2-0.9.8.post1/autogen/tools/experimental/messageplatform/slack/slack.py +385 -0
- ag2-0.9.8.post1/autogen/tools/experimental/messageplatform/telegram/telegram.py +271 -0
- ag2-0.9.8.post1/autogen/tools/experimental/perplexity/perplexity_search.py +249 -0
- ag2-0.9.8.post1/autogen/tools/experimental/reliable/reliable.py +1310 -0
- ag2-0.9.8.post1/autogen/tools/experimental/searxng/searxng_search.py +142 -0
- ag2-0.9.8.post1/autogen/tools/experimental/tavily/tavily_search.py +176 -0
- ag2-0.9.8.post1/autogen/tools/experimental/web_search_preview/web_search_preview.py +120 -0
- ag2-0.9.8.post1/autogen/tools/experimental/wikipedia/wikipedia.py +284 -0
- ag2-0.9.8.post1/autogen/tools/function_utils.py +411 -0
- ag2-0.9.8.post1/autogen/tools/tool.py +188 -0
- ag2-0.9.8.post1/autogen/types.py +29 -0
- ag2-0.9.8.post1/autogen/version.py +7 -0
- ag2-0.9.8.post1/pyproject.toml +567 -0
- ag2-0.9.8.post1/scripts/devcontainer/generate-devcontainers.py +73 -0
- ag2-0.9.8.post1/scripts/pre-commit-license-check.py +186 -0
- ag2-0.9.8.post1/setup.jinja +45 -0
- ag2-0.9.8.post1/setup_autogen.py +101 -0
- ag2-0.9.8.post1/website/docs/_blogs/2025-05-07-AG2-Copilot-Integration/index.mdx +250 -0
- ag2-0.9.8.post1/website/docs/contributor-guide/building/creating-a-tool.mdx +216 -0
- ag2-0.9.8.post1/website/docs/contributor-guide/building/creating-an-agent.mdx +335 -0
- ag2-0.9.8.post1/website/docs/contributor-guide/contributing.mdx +131 -0
- ag2-0.9.8.post1/website/docs/contributor-guide/file-bug-report.mdx +26 -0
- ag2-0.9.8.post1/website/docs/contributor-guide/how-ag2-works/generate-reply.mdx +180 -0
- ag2-0.9.8.post1/website/docs/contributor-guide/how-ag2-works/initiate-chat.mdx +86 -0
- ag2-0.9.8.post1/website/docs/contributor-guide/maintainer.mdx +39 -0
- ag2-0.9.8.post1/website/docs/contributor-guide/setup-development-environment.mdx +127 -0
- ag2-0.9.8.post1/website/docs/ecosystem/waldiez.mdx +100 -0
- ag2-0.9.8.post1/website/docs/home/quickstart.mdx +493 -0
- ag2-0.9.8.post1/website/docs/installation/Installation.mdx +115 -0
- ag2-0.9.8.post1/website/docs/quick-start.mdx +140 -0
- ag2-0.9.8.post1/website/docs/user-guide/advanced-concepts/code-execution.mdx +423 -0
- ag2-0.9.8.post1/website/docs/user-guide/models/grok-and-oai-compatible-models.mdx +337 -0
- ag2-0.9.8.post1/website/mint-json-template.json.jinja +370 -0
- ag2-0.9.8.post1/website/mkdocs/create_api_docs.py +172 -0
- ag2-0.9.8.post1/website/mkdocs/data/gallery_items.yml +263 -0
- ag2-0.9.8.post1/website/mkdocs/docs.py +228 -0
- ag2-0.9.8.post1/website/mkdocs/expand_markdown.py +104 -0
- ag2-0.9.8.post1/website/mkdocs/update_releases.py +90 -0
- ag2-0.9.8.post1/website/snippets/data/GalleryItems.mdx +246 -0
- ag2-0.9.6/.devcontainer/devcontainer.json +0 -94
- ag2-0.9.6/.github/workflows/build-docs.yml +0 -68
- ag2-0.9.6/.github/workflows/build-mkdocs.yml +0 -70
- ag2-0.9.6/.github/workflows/contrib-graph-rag-tests.yml +0 -213
- ag2-0.9.6/.github/workflows/contrib-llm-test.yml +0 -219
- ag2-0.9.6/.github/workflows/contrib-test.yml +0 -872
- ag2-0.9.6/.github/workflows/core-llm-test.yml +0 -101
- ag2-0.9.6/.github/workflows/core-test.yml +0 -137
- ag2-0.9.6/.github/workflows/docs-check-broken-links.yml +0 -31
- ag2-0.9.6/.github/workflows/integration-test.yml +0 -131
- ag2-0.9.6/.github/workflows/lfs-check.yml +0 -19
- ag2-0.9.6/.github/workflows/mkdocs-check-broken-links.yml +0 -25
- ag2-0.9.6/.github/workflows/pr-checks.yml +0 -166
- ag2-0.9.6/.github/workflows/python-package.yml +0 -67
- ag2-0.9.6/.github/workflows/test-with-optional-deps.yml +0 -202
- ag2-0.9.6/.github/workflows/type-check.yml +0 -86
- ag2-0.9.6/.gitignore +0 -203
- ag2-0.9.6/.pre-commit-config.yaml +0 -125
- ag2-0.9.6/PKG-INFO +0 -763
- ag2-0.9.6/README.md +0 -432
- ag2-0.9.6/autogen/__init__.py +0 -89
- ag2-0.9.6/autogen/_website/generate_api_references.py +0 -427
- ag2-0.9.6/autogen/_website/generate_mkdocs.py +0 -1174
- ag2-0.9.6/autogen/_website/notebook_processor.py +0 -476
- ag2-0.9.6/autogen/_website/process_notebooks.py +0 -656
- ag2-0.9.6/autogen/_website/utils.py +0 -412
- ag2-0.9.6/autogen/agentchat/agent.py +0 -182
- ag2-0.9.6/autogen/agentchat/assistant_agent.py +0 -85
- ag2-0.9.6/autogen/agentchat/contrib/agent_eval/agent_eval.py +0 -108
- ag2-0.9.6/autogen/agentchat/contrib/agent_eval/critic_agent.py +0 -44
- ag2-0.9.6/autogen/agentchat/contrib/agent_eval/quantifier_agent.py +0 -39
- ag2-0.9.6/autogen/agentchat/contrib/agent_eval/subcritic_agent.py +0 -45
- ag2-0.9.6/autogen/agentchat/contrib/agent_optimizer.py +0 -432
- ag2-0.9.6/autogen/agentchat/contrib/capabilities/generate_images.py +0 -301
- ag2-0.9.6/autogen/agentchat/contrib/capabilities/teachability.py +0 -393
- ag2-0.9.6/autogen/agentchat/contrib/capabilities/transforms.py +0 -579
- ag2-0.9.6/autogen/agentchat/contrib/capabilities/transforms_util.py +0 -122
- ag2-0.9.6/autogen/agentchat/contrib/capabilities/vision_capability.py +0 -214
- ag2-0.9.6/autogen/agentchat/contrib/captainagent/agent_builder.py +0 -790
- ag2-0.9.6/autogen/agentchat/contrib/captainagent/captainagent.py +0 -512
- ag2-0.9.6/autogen/agentchat/contrib/captainagent/tool_retriever.py +0 -335
- ag2-0.9.6/autogen/agentchat/contrib/gpt_assistant_agent.py +0 -526
- ag2-0.9.6/autogen/agentchat/contrib/graph_rag/document.py +0 -29
- ag2-0.9.6/autogen/agentchat/contrib/graph_rag/falkor_graph_query_engine.py +0 -170
- ag2-0.9.6/autogen/agentchat/contrib/graph_rag/falkor_graph_rag_capability.py +0 -103
- ag2-0.9.6/autogen/agentchat/contrib/graph_rag/graph_query_engine.py +0 -53
- ag2-0.9.6/autogen/agentchat/contrib/graph_rag/neo4j_graph_query_engine.py +0 -268
- ag2-0.9.6/autogen/agentchat/contrib/graph_rag/neo4j_graph_rag_capability.py +0 -83
- ag2-0.9.6/autogen/agentchat/contrib/graph_rag/neo4j_native_graph_query_engine.py +0 -210
- ag2-0.9.6/autogen/agentchat/contrib/graph_rag/neo4j_native_graph_rag_capability.py +0 -93
- ag2-0.9.6/autogen/agentchat/contrib/img_utils.py +0 -397
- ag2-0.9.6/autogen/agentchat/contrib/llamaindex_conversable_agent.py +0 -117
- ag2-0.9.6/autogen/agentchat/contrib/llava_agent.py +0 -187
- ag2-0.9.6/autogen/agentchat/contrib/math_user_proxy_agent.py +0 -464
- ag2-0.9.6/autogen/agentchat/contrib/multimodal_conversable_agent.py +0 -125
- ag2-0.9.6/autogen/agentchat/contrib/qdrant_retrieve_user_proxy_agent.py +0 -324
- ag2-0.9.6/autogen/agentchat/contrib/rag/chromadb_query_engine.py +0 -272
- ag2-0.9.6/autogen/agentchat/contrib/rag/llamaindex_query_engine.py +0 -198
- ag2-0.9.6/autogen/agentchat/contrib/rag/mongodb_query_engine.py +0 -329
- ag2-0.9.6/autogen/agentchat/contrib/rag/query_engine.py +0 -74
- ag2-0.9.6/autogen/agentchat/contrib/retrieve_assistant_agent.py +0 -56
- ag2-0.9.6/autogen/agentchat/contrib/retrieve_user_proxy_agent.py +0 -703
- ag2-0.9.6/autogen/agentchat/contrib/society_of_mind_agent.py +0 -199
- ag2-0.9.6/autogen/agentchat/contrib/swarm_agent.py +0 -1425
- ag2-0.9.6/autogen/agentchat/contrib/text_analyzer_agent.py +0 -79
- ag2-0.9.6/autogen/agentchat/contrib/vectordb/base.py +0 -232
- ag2-0.9.6/autogen/agentchat/contrib/vectordb/chromadb.py +0 -315
- ag2-0.9.6/autogen/agentchat/contrib/vectordb/couchbase.py +0 -407
- ag2-0.9.6/autogen/agentchat/contrib/vectordb/mongodb.py +0 -550
- ag2-0.9.6/autogen/agentchat/contrib/vectordb/pgvectordb.py +0 -928
- ag2-0.9.6/autogen/agentchat/contrib/vectordb/qdrant.py +0 -320
- ag2-0.9.6/autogen/agentchat/contrib/web_surfer.py +0 -303
- ag2-0.9.6/autogen/agentchat/conversable_agent.py +0 -4069
- ag2-0.9.6/autogen/agentchat/group/context_str.py +0 -41
- ag2-0.9.6/autogen/agentchat/group/context_variables.py +0 -192
- ag2-0.9.6/autogen/agentchat/group/group_tool_executor.py +0 -202
- ag2-0.9.6/autogen/agentchat/group/group_utils.py +0 -645
- ag2-0.9.6/autogen/agentchat/group/guardrails.py +0 -171
- ag2-0.9.6/autogen/agentchat/group/handoffs.py +0 -320
- ag2-0.9.6/autogen/agentchat/group/multi_agent_chat.py +0 -237
- ag2-0.9.6/autogen/agentchat/group/on_condition.py +0 -58
- ag2-0.9.6/autogen/agentchat/group/on_context_condition.py +0 -54
- ag2-0.9.6/autogen/agentchat/group/patterns/auto.py +0 -159
- ag2-0.9.6/autogen/agentchat/group/patterns/manual.py +0 -176
- ag2-0.9.6/autogen/agentchat/group/patterns/pattern.py +0 -294
- ag2-0.9.6/autogen/agentchat/group/patterns/random.py +0 -106
- ag2-0.9.6/autogen/agentchat/group/patterns/round_robin.py +0 -117
- ag2-0.9.6/autogen/agentchat/group/reply_result.py +0 -26
- ag2-0.9.6/autogen/agentchat/group/speaker_selection_result.py +0 -41
- ag2-0.9.6/autogen/agentchat/group/targets/group_chat_target.py +0 -132
- ag2-0.9.6/autogen/agentchat/group/targets/group_manager_target.py +0 -151
- ag2-0.9.6/autogen/agentchat/group/targets/transition_target.py +0 -423
- ag2-0.9.6/autogen/agentchat/groupchat.py +0 -1781
- ag2-0.9.6/autogen/agentchat/realtime/experimental/audio_adapters/twilio_audio_adapter.py +0 -148
- ag2-0.9.6/autogen/agentchat/realtime/experimental/audio_adapters/websocket_audio_adapter.py +0 -139
- ag2-0.9.6/autogen/agentchat/realtime/experimental/clients/gemini/client.py +0 -274
- ag2-0.9.6/autogen/agentchat/realtime/experimental/clients/oai/base_client.py +0 -220
- ag2-0.9.6/autogen/agentchat/realtime/experimental/clients/oai/rtc_client.py +0 -243
- ag2-0.9.6/autogen/agentchat/realtime/experimental/clients/realtime_client.py +0 -190
- ag2-0.9.6/autogen/agentchat/realtime/experimental/realtime_agent.py +0 -158
- ag2-0.9.6/autogen/agentchat/realtime/experimental/realtime_observer.py +0 -100
- ag2-0.9.6/autogen/agentchat/realtime/experimental/realtime_swarm.py +0 -485
- ag2-0.9.6/autogen/agentchat/user_proxy_agent.py +0 -111
- ag2-0.9.6/autogen/agentchat/utils.py +0 -206
- ag2-0.9.6/autogen/agents/contrib/time/time_reply_agent.py +0 -73
- ag2-0.9.6/autogen/agents/contrib/time/time_tool_agent.py +0 -51
- ag2-0.9.6/autogen/agents/experimental/deep_research/deep_research.py +0 -52
- ag2-0.9.6/autogen/agents/experimental/discord/discord.py +0 -66
- ag2-0.9.6/autogen/agents/experimental/document_agent/chroma_query_engine.py +0 -316
- ag2-0.9.6/autogen/agents/experimental/document_agent/docling_doc_ingest_agent.py +0 -118
- ag2-0.9.6/autogen/agents/experimental/document_agent/document_agent.py +0 -653
- ag2-0.9.6/autogen/agents/experimental/document_agent/document_conditions.py +0 -50
- ag2-0.9.6/autogen/agents/experimental/document_agent/document_utils.py +0 -380
- ag2-0.9.6/autogen/agents/experimental/document_agent/inmemory_query_engine.py +0 -220
- ag2-0.9.6/autogen/agents/experimental/document_agent/parser_utils.py +0 -130
- ag2-0.9.6/autogen/agents/experimental/document_agent/url_utils.py +0 -426
- ag2-0.9.6/autogen/agents/experimental/reasoning/reasoning_agent.py +0 -1178
- ag2-0.9.6/autogen/agents/experimental/slack/slack.py +0 -73
- ag2-0.9.6/autogen/agents/experimental/telegram/telegram.py +0 -77
- ag2-0.9.6/autogen/agents/experimental/websurfer/websurfer.py +0 -70
- ag2-0.9.6/autogen/agents/experimental/wikipedia/wikipedia.py +0 -90
- ag2-0.9.6/autogen/browser_utils.py +0 -309
- ag2-0.9.6/autogen/cache/abstract_cache_base.py +0 -75
- ag2-0.9.6/autogen/cache/cache.py +0 -203
- ag2-0.9.6/autogen/cache/cache_factory.py +0 -88
- ag2-0.9.6/autogen/cache/cosmos_db_cache.py +0 -144
- ag2-0.9.6/autogen/cache/disk_cache.py +0 -102
- ag2-0.9.6/autogen/cache/in_memory_cache.py +0 -58
- ag2-0.9.6/autogen/cache/redis_cache.py +0 -123
- ag2-0.9.6/autogen/code_utils.py +0 -598
- ag2-0.9.6/autogen/coding/base.py +0 -119
- ag2-0.9.6/autogen/coding/docker_commandline_code_executor.py +0 -288
- ag2-0.9.6/autogen/coding/func_with_reqs.py +0 -202
- ag2-0.9.6/autogen/coding/jupyter/base.py +0 -36
- ag2-0.9.6/autogen/coding/jupyter/docker_jupyter_server.py +0 -167
- ag2-0.9.6/autogen/coding/jupyter/import_utils.py +0 -82
- ag2-0.9.6/autogen/coding/jupyter/jupyter_client.py +0 -231
- ag2-0.9.6/autogen/coding/jupyter/jupyter_code_executor.py +0 -160
- ag2-0.9.6/autogen/coding/jupyter/local_jupyter_server.py +0 -172
- ag2-0.9.6/autogen/coding/local_commandline_code_executor.py +0 -405
- ag2-0.9.6/autogen/coding/markdown_code_extractor.py +0 -45
- ag2-0.9.6/autogen/coding/utils.py +0 -56
- ag2-0.9.6/autogen/doc_utils.py +0 -34
- ag2-0.9.6/autogen/environments/docker_python_environment.py +0 -375
- ag2-0.9.6/autogen/environments/python_environment.py +0 -134
- ag2-0.9.6/autogen/environments/system_python_environment.py +0 -86
- ag2-0.9.6/autogen/environments/venv_python_environment.py +0 -224
- ag2-0.9.6/autogen/environments/working_directory.py +0 -75
- ag2-0.9.6/autogen/events/agent_events.py +0 -1019
- ag2-0.9.6/autogen/events/base_event.py +0 -99
- ag2-0.9.6/autogen/events/client_events.py +0 -167
- ag2-0.9.6/autogen/events/helpers.py +0 -44
- ag2-0.9.6/autogen/events/print_event.py +0 -46
- ag2-0.9.6/autogen/fast_depends/_compat.py +0 -80
- ag2-0.9.6/autogen/fast_depends/core/build.py +0 -225
- ag2-0.9.6/autogen/fast_depends/core/model.py +0 -576
- ag2-0.9.6/autogen/fast_depends/dependencies/model.py +0 -29
- ag2-0.9.6/autogen/fast_depends/dependencies/provider.py +0 -39
- ag2-0.9.6/autogen/fast_depends/library/model.py +0 -46
- ag2-0.9.6/autogen/fast_depends/schema.py +0 -66
- ag2-0.9.6/autogen/fast_depends/use.py +0 -280
- ag2-0.9.6/autogen/fast_depends/utils.py +0 -187
- ag2-0.9.6/autogen/formatting_utils.py +0 -83
- ag2-0.9.6/autogen/graph_utils.py +0 -178
- ag2-0.9.6/autogen/import_utils.py +0 -526
- ag2-0.9.6/autogen/interop/crewai/crewai.py +0 -88
- ag2-0.9.6/autogen/interop/interoperable.py +0 -46
- ag2-0.9.6/autogen/interop/langchain/langchain_chat_model_factory.py +0 -155
- ag2-0.9.6/autogen/interop/langchain/langchain_tool.py +0 -82
- ag2-0.9.6/autogen/interop/litellm/litellm_config_factory.py +0 -179
- ag2-0.9.6/autogen/interop/pydantic_ai/pydantic_ai.py +0 -168
- ag2-0.9.6/autogen/interop/registry.py +0 -69
- ag2-0.9.6/autogen/io/base.py +0 -151
- ag2-0.9.6/autogen/io/run_response.py +0 -293
- ag2-0.9.6/autogen/io/websockets.py +0 -213
- ag2-0.9.6/autogen/json_utils.py +0 -43
- ag2-0.9.6/autogen/llm_config.py +0 -385
- ag2-0.9.6/autogen/logger/base_logger.py +0 -128
- ag2-0.9.6/autogen/logger/file_logger.py +0 -261
- ag2-0.9.6/autogen/logger/logger_factory.py +0 -42
- ag2-0.9.6/autogen/logger/logger_utils.py +0 -57
- ag2-0.9.6/autogen/logger/sqlite_logger.py +0 -523
- ag2-0.9.6/autogen/math_utils.py +0 -339
- ag2-0.9.6/autogen/mcp/__main__.py +0 -78
- ag2-0.9.6/autogen/mcp/helpers.py +0 -45
- ag2-0.9.6/autogen/mcp/mcp_client.py +0 -208
- ag2-0.9.6/autogen/mcp/mcp_proxy/fastapi_code_generator_helpers.py +0 -63
- ag2-0.9.6/autogen/mcp/mcp_proxy/mcp_proxy.py +0 -580
- ag2-0.9.6/autogen/mcp/mcp_proxy/operation_grouping.py +0 -158
- ag2-0.9.6/autogen/mcp/mcp_proxy/operation_renaming.py +0 -114
- ag2-0.9.6/autogen/mcp/mcp_proxy/security.py +0 -400
- ag2-0.9.6/autogen/messages/agent_messages.py +0 -948
- ag2-0.9.6/autogen/messages/base_message.py +0 -107
- ag2-0.9.6/autogen/messages/client_messages.py +0 -171
- ag2-0.9.6/autogen/messages/print_message.py +0 -49
- ag2-0.9.6/autogen/oai/__init__.py +0 -53
- ag2-0.9.6/autogen/oai/anthropic.py +0 -714
- ag2-0.9.6/autogen/oai/bedrock.py +0 -628
- ag2-0.9.6/autogen/oai/cerebras.py +0 -299
- ag2-0.9.6/autogen/oai/client.py +0 -1508
- ag2-0.9.6/autogen/oai/client_utils.py +0 -169
- ag2-0.9.6/autogen/oai/cohere.py +0 -479
- ag2-0.9.6/autogen/oai/gemini.py +0 -1022
- ag2-0.9.6/autogen/oai/gemini_types.py +0 -156
- ag2-0.9.6/autogen/oai/groq.py +0 -305
- ag2-0.9.6/autogen/oai/mistral.py +0 -303
- ag2-0.9.6/autogen/oai/oai_models/__init__.py +0 -11
- ag2-0.9.6/autogen/oai/oai_models/_models.py +0 -16
- ag2-0.9.6/autogen/oai/oai_models/chat_completion.py +0 -87
- ag2-0.9.6/autogen/oai/oai_models/chat_completion_message.py +0 -86
- ag2-0.9.6/autogen/oai/oai_models/chat_completion_message_tool_call.py +0 -37
- ag2-0.9.6/autogen/oai/oai_models/chat_completion_token_logprob.py +0 -63
- ag2-0.9.6/autogen/oai/oai_models/completion_usage.py +0 -60
- ag2-0.9.6/autogen/oai/ollama.py +0 -643
- ag2-0.9.6/autogen/oai/openai_responses.py +0 -426
- ag2-0.9.6/autogen/oai/openai_utils.py +0 -881
- ag2-0.9.6/autogen/oai/together.py +0 -370
- ag2-0.9.6/autogen/retrieve_utils.py +0 -491
- ag2-0.9.6/autogen/runtime_logging.py +0 -160
- ag2-0.9.6/autogen/token_count_utils.py +0 -267
- ag2-0.9.6/autogen/tools/contrib/time/time.py +0 -41
- ag2-0.9.6/autogen/tools/dependency_injection.py +0 -254
- ag2-0.9.6/autogen/tools/experimental/browser_use/browser_use.py +0 -154
- ag2-0.9.6/autogen/tools/experimental/code_execution/python_code_execution.py +0 -88
- ag2-0.9.6/autogen/tools/experimental/crawl4ai/crawl4ai.py +0 -153
- ag2-0.9.6/autogen/tools/experimental/deep_research/deep_research.py +0 -328
- ag2-0.9.6/autogen/tools/experimental/duckduckgo/duckduckgo_search.py +0 -109
- ag2-0.9.6/autogen/tools/experimental/firecrawl/firecrawl_tool.py +0 -853
- ag2-0.9.6/autogen/tools/experimental/google/authentication/credentials_local_provider.py +0 -91
- ag2-0.9.6/autogen/tools/experimental/google/drive/drive_functions.py +0 -124
- ag2-0.9.6/autogen/tools/experimental/google/drive/toolkit.py +0 -88
- ag2-0.9.6/autogen/tools/experimental/google_search/google_search.py +0 -93
- ag2-0.9.6/autogen/tools/experimental/google_search/youtube_search.py +0 -181
- ag2-0.9.6/autogen/tools/experimental/messageplatform/discord/discord.py +0 -288
- ag2-0.9.6/autogen/tools/experimental/messageplatform/slack/slack.py +0 -391
- ag2-0.9.6/autogen/tools/experimental/messageplatform/telegram/telegram.py +0 -275
- ag2-0.9.6/autogen/tools/experimental/perplexity/perplexity_search.py +0 -260
- ag2-0.9.6/autogen/tools/experimental/reliable/reliable.py +0 -1316
- ag2-0.9.6/autogen/tools/experimental/searxng/searxng_search.py +0 -141
- ag2-0.9.6/autogen/tools/experimental/tavily/tavily_search.py +0 -183
- ag2-0.9.6/autogen/tools/experimental/web_search_preview/web_search_preview.py +0 -114
- ag2-0.9.6/autogen/tools/experimental/wikipedia/wikipedia.py +0 -287
- ag2-0.9.6/autogen/tools/function_utils.py +0 -411
- ag2-0.9.6/autogen/tools/tool.py +0 -187
- ag2-0.9.6/autogen/types.py +0 -29
- ag2-0.9.6/autogen/version.py +0 -7
- ag2-0.9.6/pyproject.toml +0 -561
- ag2-0.9.6/scripts/devcontainer/generate-devcontainers.py +0 -73
- ag2-0.9.6/scripts/pre-commit-license-check.py +0 -187
- ag2-0.9.6/setup.jinja +0 -45
- ag2-0.9.6/setup_autogen.py +0 -101
- ag2-0.9.6/website/docs/_blogs/2025-05-07-AG2-Copilot-Integration/index.mdx +0 -250
- ag2-0.9.6/website/docs/contributor-guide/building/creating-a-tool.mdx +0 -215
- ag2-0.9.6/website/docs/contributor-guide/building/creating-an-agent.mdx +0 -330
- ag2-0.9.6/website/docs/contributor-guide/contributing.mdx +0 -123
- ag2-0.9.6/website/docs/contributor-guide/file-bug-report.mdx +0 -26
- ag2-0.9.6/website/docs/contributor-guide/how-ag2-works/generate-reply.mdx +0 -174
- ag2-0.9.6/website/docs/contributor-guide/how-ag2-works/initiate-chat.mdx +0 -86
- ag2-0.9.6/website/docs/contributor-guide/maintainer.mdx +0 -38
- ag2-0.9.6/website/docs/contributor-guide/setup-development-environment.mdx +0 -131
- ag2-0.9.6/website/docs/home/quickstart.mdx +0 -492
- ag2-0.9.6/website/docs/installation/Installation.mdx +0 -115
- ag2-0.9.6/website/docs/quick-start.mdx +0 -140
- ag2-0.9.6/website/docs/user-guide/advanced-concepts/code-execution.mdx +0 -423
- ag2-0.9.6/website/mint-json-template.json.jinja +0 -368
- ag2-0.9.6/website/mkdocs/create_api_docs.py +0 -173
- ag2-0.9.6/website/mkdocs/data/gallery_items.yml +0 -263
- ag2-0.9.6/website/mkdocs/docs.py +0 -229
- ag2-0.9.6/website/mkdocs/expand_markdown.py +0 -105
- ag2-0.9.6/website/mkdocs/update_releases.py +0 -90
- ag2-0.9.6/website/snippets/data/GalleryItems.mdx +0 -246
- {ag2-0.9.6 → ag2-0.9.8.post1}/.coveragerc +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.devcontainer/Dockerfile +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.devcontainer/README.md +0 -0
- {ag2-0.9.6/.devcontainer/python-3.10 → ag2-0.9.8.post1/.devcontainer}/devcontainer.json +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.devcontainer/python-3.11/devcontainer.json +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.devcontainer/python-3.12/devcontainer.json +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.devcontainer/python-3.13/devcontainer.json +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.devcontainer/setup.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.gitattributes +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.github/ISSUE_TEMPLATE/general_issue.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.github/ISSUE_TEMPLATE.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.github/dependabot.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.github/workflows/deploy-website-mintlify.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.github/workflows/deploy-website.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/.muffet-excluded-links.txt +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/CITATION.cff +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/LICENSE +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/MAINTAINERS.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/NOTICE.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/OAI_CONFIG_LIST_sample +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/TRANSPARENCY_FAQS.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/announcements.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/_website/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/chat.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/agent_eval/README.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/agent_eval/criterion.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/agent_eval/task.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/capabilities/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/capabilities/agent_capability.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/capabilities/text_compressors.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/capabilities/tools_capability.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/capabilities/transform_messages.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/README.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_correlation.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/data_analysis/calculate_skewness_and_kurtosis.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_iqr.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/data_analysis/detect_outlier_zscore.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/data_analysis/explore_csv.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/data_analysis/shapiro_wilk_test.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_download.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/arxiv_search.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_image.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/extract_pdf_text.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_wikipedia_text.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/get_youtube_caption.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/image_qa.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/optical_character_recognition.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/perform_web_search.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/scrape_wikipedia_tables.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/transcribe_audio_file.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/information_retrieval/youtube_download.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/calculate_circle_area_from_diameter.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/calculate_day_of_the_week.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/calculate_fraction_sum.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/calculate_matrix_power.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/calculate_reflected_point.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/complex_numbers_product.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/compute_currency_conversion.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/count_distinct_permutations.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/evaluate_expression.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/find_continuity_point.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/fraction_to_mixed_numbers.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/modular_inverse_sum.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/simplify_mixed_numbers.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/sum_of_digit_factorials.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/math/sum_of_primes_below.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/requirements.txt +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/captainagent/tools/tool_description.tsv +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/graph_rag/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/graph_rag/graph_rag_capability.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/rag/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/vectordb/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/contrib/vectordb/utils.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/group/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/group/available_condition.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/group/context_condition.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/group/context_expression.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/group/llm_condition.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/group/patterns/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/group/targets/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/group/targets/transition_utils.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/audio_adapters/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/audio_observer.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/clients/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/clients/gemini/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/clients/oai/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/clients/oai/utils.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/function_observer.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/realtime_events.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime/experimental/websockets.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agentchat/realtime_agent/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/contrib/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/contrib/time/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/experimental/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/experimental/deep_research/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/experimental/discord/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/experimental/document_agent/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/experimental/reasoning/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/experimental/slack/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/experimental/telegram/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/experimental/websurfer/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/agents/experimental/wikipedia/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/cache/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/coding/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/coding/factory.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/coding/jupyter/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/coding/jupyter/embedded_ipython_code_executor.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/environments/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/events/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/exception_utils.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/extensions/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/fast_depends/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/fast_depends/core/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/fast_depends/dependencies/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/fast_depends/library/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/fast_depends/py.typed +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/function_utils.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/interop/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/interop/crewai/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/interop/interoperability.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/interop/langchain/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/interop/litellm/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/interop/pydantic_ai/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/io/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/io/console.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/io/processors/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/io/processors/base.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/io/processors/console_event_processor.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/io/thread_io_stream.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/logger/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/mcp/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/mcp/mcp_proxy/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/mcp/mcp_proxy/patch_fastapi_code_generator.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/mcp/mcp_proxy/security_schema_visitor.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/messages/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/oai/oai_models/chat_completion_audio.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/contrib/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/contrib/time/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/browser_use/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/code_execution/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/crawl4ai/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/deep_research/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/duckduckgo/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/firecrawl/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/google/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/google/authentication/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/google/authentication/credentials_hosted_provider.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/google/authentication/credentials_provider.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/google/drive/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/google/model.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/google/toolkit_protocol.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/google_search/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/messageplatform/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/messageplatform/discord/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/messageplatform/slack/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/messageplatform/telegram/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/perplexity/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/reliable/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/searxng/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/tavily/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/web_search_preview/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/experimental/wikipedia/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/autogen/tools/toolkit.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/azure-pipelines.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/codecov.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/license_original/LICENSE-CC +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/license_original/LICENSE_original_MIT +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/broken-links-check.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/build-setup-files.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/devcontainer/generate-devcontainers.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/devcontainer/templates/devcontainer.json.jinja +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/docs_build.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/docs_build_mkdocs.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/docs_serve.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/docs_serve_mkdocs.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/integration-test.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/lint.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/pre-commit-build-setup-files.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/pre-commit-lint.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/pre-commit-mypy-run.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/show-coverage-report.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/test-core-llm.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/test-core-skip-llm.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/test-docs.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/test-skip-llm.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/scripts/test.sh +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/templates/client_template/main.jinja2 +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/templates/config_template/config.jinja2 +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/templates/main.jinja2 +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/.gitignore +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/README.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/blogs_and_user_stories_authors.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/.gitignore +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-04-21-LLM-tuning-math/img/level2algebra.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-04-21-LLM-tuning-math/img/level3algebra.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-04-21-LLM-tuning-math/img/level4algebra.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-04-21-LLM-tuning-math/img/level5algebra.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-04-21-LLM-tuning-math/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-05-18-GPT-adaptive-humaneval/img/design.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-05-18-GPT-adaptive-humaneval/img/humaneval.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-05-18-GPT-adaptive-humaneval/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-06-28-MathChat/img/mathchatflow.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-06-28-MathChat/img/result.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-06-28-MathChat/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-07-14-Local-LLMs/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-10-18-RetrieveChat/img/autogen-rag.gif +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-10-18-RetrieveChat/img/retrievechat-arch.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-10-18-RetrieveChat/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-10-26-TeachableAgent/img/teachable-arch.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-10-26-TeachableAgent/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-06-LMM-Agent/img/teaser.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-06-LMM-Agent/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-09-EcoAssistant/img/chat.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-09-EcoAssistant/img/results.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-09-EcoAssistant/img/system.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-09-EcoAssistant/img/template-demo.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-09-EcoAssistant/img/template.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-09-EcoAssistant/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-13-OAI-assistants/img/teaser.jpg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-13-OAI-assistants/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-20-AgentEval/img/agenteval-CQ.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-20-AgentEval/img/math-problems-plot.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-20-AgentEval/img/tasks-taxonomy.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-20-AgentEval/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-26-Agent-AutoBuild/img/agent_autobuild.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-11-26-Agent-AutoBuild/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-12-01-AutoGenStudio/img/autogenstudio_config.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-12-01-AutoGenStudio/img/autogenstudio_home.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-12-01-AutoGenStudio/img/autogenstudio_skills.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-12-01-AutoGenStudio/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-12-23-AgentOptimizer/img/agentoptimizer.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-12-23-AgentOptimizer/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2023-12-29-AgentDescriptions/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-01-23-Code-execution-in-docker/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-01-25-AutoGenBench/img/teaser.jpg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-01-25-AutoGenBench/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-01-26-Custom-Models/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-02-AutoAnny/img/AutoAnnyLogo.jpg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-02-AutoAnny/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-11-FSM-GroupChat/img/FSM_logic.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-11-FSM-GroupChat/img/FSM_of_multi-agents.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-11-FSM-GroupChat/img/teaser.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-11-FSM-GroupChat/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-29-StateFlow/img/alfworld.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-29-StateFlow/img/bash_result.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-29-StateFlow/img/intercode.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-29-StateFlow/img/sf_example_1.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-02-29-StateFlow/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-03-AutoGen-Update/img/contributors.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-03-AutoGen-Update/img/dalle_gpt4v.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-03-AutoGen-Update/img/gaia.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-03-AutoGen-Update/img/love.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-03-AutoGen-Update/img/teach.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-03-AutoGen-Update/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-11-AutoDefense/img/architecture.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-11-AutoDefense/img/defense-agency-design.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-11-AutoDefense/img/table-4agents.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-11-AutoDefense/img/table-agents.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-11-AutoDefense/img/table-compared-methods.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-03-11-AutoDefense/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-05-24-Agent/img/agents.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-05-24-Agent/img/leadership.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-05-24-Agent/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-06-21-AgentEval/img/agenteval_ov_v3.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-06-21-AgentEval/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-06-24-AltModels-Classes/img/agentstogether.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-06-24-AltModels-Classes/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-07-25-AgentOps/img/autogen-integration.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-07-25-AgentOps/img/dashboard.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-07-25-AgentOps/img/flow.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-07-25-AgentOps/img/session-replay.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-07-25-AgentOps/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-15-CaptainAgent/img/build.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-15-CaptainAgent/img/chat.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-15-CaptainAgent/img/overall.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-15-CaptainAgent/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-17-Swarm/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-27-Prompt-Leakage-Probing/img/probing_flow.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-27-Prompt-Leakage-Probing/img/prompt_leakage_report.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-27-Prompt-Leakage-Probing/img/prompt_leakage_social_img.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-27-Prompt-Leakage-Probing/img/prompt_test_chat.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-11-27-Prompt-Leakage-Probing/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-02-ReasoningAgent2/img/reasoningagent_1.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-02-ReasoningAgent2/img/reasoningagent_2.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-02-ReasoningAgent2/img/tree-of-thoughts.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-02-ReasoningAgent2/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-06-FalkorDB-Structured/img/falkordb.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-06-FalkorDB-Structured/img/tripplanner.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-06-FalkorDB-Structured/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-20-RealtimeAgent/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-20-Reasoning-Update/img/mcts_example.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-20-Reasoning-Update/img/reasoningagent_1.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-20-Reasoning-Update/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2024-12-20-Tools-interoperability/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-07-Tools-Dependency-Injection/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-08-RealtimeAgent-over-websocket/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-09-RealtimeAgent-over-WebRTC/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-10-WebSockets/img/structured_messages_with_websockets.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-10-WebSockets/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-22-Tools-ChatContext-Dependency-Injection/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-29-RealtimeAgent-with-gemini/img/RealtimeAgent_gemini.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-29-RealtimeAgent-with-gemini/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-31-WebSurferAgent/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-01-31-Websurfing-Tools/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-02-05-Communication-Agents/img/commsagents_discord_msg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-02-05-Communication-Agents/img/commsagents_slack_finalmsg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-02-05-Communication-Agents/img/commsagents_slack_msg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-02-05-Communication-Agents/img/commsagents_telegram_msg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-02-05-Communication-Agents/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-02-13-DeepResearchAgent/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-04-16-Reasoning/img/cognition.jpg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-04-16-Reasoning/img/iter.jpg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-04-16-Reasoning/img/partner.jpg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-04-16-Reasoning/img/threads.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-04-16-Reasoning/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-04-28-0.9-Release-Announcement/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-05-07-AG2-Copilot-Integration/img/AG2-CopilotKit.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-05-07-AG2-Copilot-Integration/img/ag2-copilotkit-architecture.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-05-07-AG2-Copilot-Integration/img/quick-start-1.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-05-07-AG2-Copilot-Integration/img/quick-start-2.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-06-12-ReAct-Loops-in-GroupChat/img/image1.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-06-12-ReAct-Loops-in-GroupChat/img/image2.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-06-12-ReAct-Loops-in-GroupChat/img/image3.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-06-12-ReAct-Loops-in-GroupChat/img/image4.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/_blogs/2025-06-12-ReAct-Loops-in-GroupChat/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/community-talks/2025-04-10-NOVA/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/contributor-guide/Migration-Guide.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/contributor-guide/Research.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/contributor-guide/documentation.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/contributor-guide/how-ag2-works/assets/generate-reply.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/contributor-guide/how-ag2-works/assets/initiate-chat.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/contributor-guide/how-ag2-works/hooks.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/contributor-guide/how-ag2-works/overview.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/contributor-guide/pre-commit.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/contributor-guide/tests.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/agentops.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/azure_cosmos_db.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/composio.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/databricks.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/img/ecosystem-databricks.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/img/ecosystem-fabric.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/img/ecosystem-llamaindex.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/img/ecosystem-memgpt.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/img/ecosystem-ollama.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/img/ecosystem-promptflow.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/llamaindex.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/mem0.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/memgpt.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/microsoft-fabric.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/ollama.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/pgvector.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/portkey.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/ecosystem/promptflow.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/faq/FAQ.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/installation/Optional-Dependencies.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/.gitignore +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/community-gallery/community-gallery.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/notebooks/Notebooks.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/use-cases/assets/game-design-page.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/use-cases/assets/game-designed.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/use-cases/assets/travel-planning-falkordb.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/use-cases/assets/travel-planning-itinerary.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/use-cases/assets/travel-planning-overview.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/use-cases/customer-service.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/use-cases/game-design.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/use-cases/use-cases/travel-planning.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/code-execution-in-conversation.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/code-executor-docker.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/code-executor-no-docker.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/code-executor-stock-chart.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/group-chat-fsm.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/group-chat.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/nested-chats.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/sequential-two-agent-chat.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/swarm-enhanced-01.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/swarm-enhanced-02.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/swarm-enhanced-03.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/swarm-enhanced-04.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/assets/two-agent-chat.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/ending-a-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/groupchat/custom-group-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/groupchat/groupchat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/groupchat/resuming-group-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/groupchat/tools.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/llm-configuration-deep-dive.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/nested-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/assets/nested-chats.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/assets/sequential-two-agent-chat.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/ending-a-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/group-chat/agent-tools-functions.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/group-chat/context-variables.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/group-chat/guardrails.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/group-chat/handoffs.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/group-chat/introduction.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/group-chat/patterns.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/group-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/nested-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/orchestrations.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/sequential-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/swarm/deprecation.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestration/two-agent-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/orchestrations.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/context_aware_routing.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/context_aware_routing_flow.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/escalation.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/escalation_flow.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/feedback_loop.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/feedback_loop_flow.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/hierarchical.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/hierarchical_flow.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/organic.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/organic_flow.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/pipeline.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/pipeline_flow.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/redundant.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/redundant_flow.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/star.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/star_flow.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/triage_tasks.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/assets/triage_tasks_flow.jpeg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/context_aware_routing.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/escalation.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/feedback_loop.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/hierarchical.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/organic.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/overview.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/pipeline.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/redundant.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/star.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/pattern-cookbook/triage_with_tasks.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/rag.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/realtime-agent/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/realtime-agent/twilio.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/realtime-agent/webrtc.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/realtime-agent/websocket.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/sequential-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/tools/basics.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/tools/controlling-use.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/tools/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/tools/interop/crewai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/tools/interop/langchain.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/tools/interop/pydanticai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/tools/mcp/client.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/tools/tools-with-secrets.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/advanced-concepts/two-agent-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/assets/human-in-the-loop-example.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/assets/overview-workflow.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/conversable-agent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/human-in-the-loop.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/installing-ag2.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/introducing-group-chat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/introducing-swarm-orchestration.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/introducing-tools.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/llm-configuration.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/overview.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/basic-concepts/structured-outputs.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/getting-started/Getting-Started.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/amazon-bedrock.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/anthropic.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/assets/ag2-agentchat.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/assets/chat-example.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/assets/create-gcp-svc.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/assets/gemini-coding-chart.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/cerebras.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/cohere.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/deepseek-v3.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/google-gemini.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/google-vertexai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/groq.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/litellm-proxy-server/azure.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/litellm-proxy-server/installation.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/litellm-proxy-server/openai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/litellm-proxy-server/watsonx.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/lm-studio.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/mistralai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/ollama.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/openai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/openai_responses.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/togetherai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/models/vLLM.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/assets/commsagents_discordoutput.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/assets/commsagents_tools.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/assets/commsplatforms_discord_sentmsg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/assets/commsplatforms_slack_sentmsg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/assets/commsplatforms_telegram_sentmsg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/assets/docagent_tests_story1.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/assets/docagent_tests_story2.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/assets/websurferagent_animated.gif +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/captainagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/communication-platforms/discordagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/communication-platforms/overview.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/communication-platforms/slackagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/communication-platforms/telegramagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/deepresearchagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/docagent-performance.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/docagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/reasoningagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/websurferagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-agents/wikipediaagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/browser-use.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/code-execution.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/communication-platforms/discord.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/communication-platforms/slack.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/communication-platforms/telegram.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/crawl4ai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/deep-research.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/firecrawl.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/google-api/google-drive.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/google-api/google-search.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/google-api/youtube-search.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/perplexity-search.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/searxng-search.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-guide/reference-tools/wikipedia-search.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-02-11-NOVA/img/nexla_ag2.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-02-11-NOVA/img/nova_architecture.webp +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-02-11-NOVA/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-03-Fortune-500-RAG-Chatbot/img/01.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-03-Fortune-500-RAG-Chatbot/img/02.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-03-Fortune-500-RAG-Chatbot/img/banner.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-03-Fortune-500-RAG-Chatbot/img/profile.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-03-Fortune-500-RAG-Chatbot/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-04-AgentWeb/img/01.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-04-AgentWeb/img/banner.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-04-AgentWeb/img/profile.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-04-AgentWeb/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-11-Productionizing-OSS-Agents/img/banner.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-11-Productionizing-OSS-Agents/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-15-CMBAgent/img/banner.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-15-CMBAgent/img/boris_profile.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-15-CMBAgent/img/flow-chart.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-15-CMBAgent/img/francisco_profile.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-15-CMBAgent/img/inigo_profile.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-15-CMBAgent/img/james_profile.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-15-CMBAgent/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-30-Cegid-Pulse-OS/img/01.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-30-Cegid-Pulse-OS/img/banner.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-30-Cegid-Pulse-OS/img/profile.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docs/user-stories/2025-04-30-Cegid-Pulse-OS/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/docusaurus.config.js +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/generate_api_references.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/logo/ag2-white.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/logo/ag2.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/logo/favicon.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mako_templates/text.mako +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mint-app-gallery-deps.js +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mint-script.js +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mint-style.css +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/.gitignore +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/README.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/data/people.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/docs/.gitignore +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/docs/index.md +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/docs/javascripts/extra.js +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/docs/stylesheets/extra.css +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/docs_src/__init__.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/generate_mkdocs.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/includes/.gitkeep +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/mkdocs.yml +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/404.html +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/home.html +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/blue-bg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/bot-left-corner.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/bot-right-corner.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/button-shine.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/city-horizon.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/cloud.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/conversation.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/green-bg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/human.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/intuitive.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/purple-bg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/sun.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/top-left-corner.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/top-right-corner.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/images/yellow-bg.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/overrides/main.html +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/mkdocs/templates/redirect.html +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/package-lock.json +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/package.json +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/process_notebooks.py +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/1_service_running.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/2_incoming_call.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/3_request_for_flight_cancellation.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/4_flight_number_name.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/5_refund_policy.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/6_flight_refunded.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/realtime_agent_swarm.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/twilio_endpoint_config.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/twilio_phone_numbers.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/webrtc_chat.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/webrtc_communication_diagram.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/webrtc_connection_diagram.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/websocket_chat.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/img/websocket_communication_diagram.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/twilio.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/webrtc.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/advanced-concepts/realtime-agent/websocket.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/components/ClientSideComponent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/components/GalleryPage.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/interop/crewai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/interop/langchain.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/interop/pydanticai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/mcp/client.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/conversableagentchat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/groupchat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/groupchatcustomfsm.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/groupchatcustomfunc.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/humanintheloop.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/humanintheloop_financial.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/nestedchat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/sequentialchat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/structured_output.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/swarm.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/swarmgroupchat.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/toolregister.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/python-examples/websurferagent.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/reference-agents/deep-research.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/reference-agents/img/DeepResearchAgent.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/reference-tools/browser-use.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/reference-tools/code-execution-docker.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/reference-tools/code-execution-system.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/reference-tools/code-execution-venv.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/reference-tools/crawl4ai.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/reference-tools/deep-research.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/reference-tools/google-drive.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/snippets/utils/runmethodhelp.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/.nojekyll +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/ag.ico +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/ag.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/ag2.ico +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/ag2.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/ag2.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/auto.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/autogen.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/autogen_agentchat.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/autogen_app.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/autogen_app.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/chat_example.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/conv.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/conv_2.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/cover.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/create_gcp_svc.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/ecosystem-composio.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/extend.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/fast.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/favicon-dark.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/favicon.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/flaml.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/flaml_logo.ico +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/flaml_logo_fill.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/gallery/TensionCode.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/gallery/agent-e.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/gallery/autotx.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/gallery/composio-autogen.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/gallery/default.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/gallery/robot.jpg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/gallery/webagent.jpg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/gallery/x-force-ide-ui.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/homepage-hero-background-large.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/homepage-hero-background.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/logo.svg +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/static/img/love.png +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-08-26/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-09-23/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-09-30/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-10-14/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-10-15/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-11-04/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-11-11/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-11-12/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-11-18/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-11-25/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-11-28/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-12-12/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-12-19/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2024-12-19-special_talk/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2025-01-16/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/2025-01-23/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/talks/future_talks/index.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/user-guide/captainagent/_category_.json +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/user-guide/captainagent/agent_library.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/user-guide/captainagent/configurations.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/user-guide/captainagent/tool_library.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/user-guide/handling_long_contexts/_category_.json +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/user-guide/handling_long_contexts/compressing_text_w_llmligua.mdx +0 -0
- {ag2-0.9.6 → ag2-0.9.8.post1}/website/user-guide/handling_long_contexts/intro_to_transform_messages.mdx +0 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
name: Build docs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_call:
|
|
5
|
+
inputs:
|
|
6
|
+
python-version:
|
|
7
|
+
description: 'Python version to use'
|
|
8
|
+
required: true
|
|
9
|
+
default: '3.10'
|
|
10
|
+
type: string
|
|
11
|
+
node-version:
|
|
12
|
+
description: 'Node version to use'
|
|
13
|
+
required: true
|
|
14
|
+
default: '18.x'
|
|
15
|
+
type: string
|
|
16
|
+
|
|
17
|
+
jobs:
|
|
18
|
+
build-docs:
|
|
19
|
+
runs-on: ubuntu-latest
|
|
20
|
+
defaults:
|
|
21
|
+
run:
|
|
22
|
+
working-directory: website
|
|
23
|
+
steps:
|
|
24
|
+
- uses: actions/checkout@v5
|
|
25
|
+
with:
|
|
26
|
+
lfs: true
|
|
27
|
+
fetch-depth: 0
|
|
28
|
+
- uses: astral-sh/setup-uv@v6
|
|
29
|
+
with:
|
|
30
|
+
version: "latest"
|
|
31
|
+
- uses: actions/setup-node@v4
|
|
32
|
+
with:
|
|
33
|
+
node-version: ${{ github.event.inputs.node-version }}
|
|
34
|
+
- name: setup python
|
|
35
|
+
uses: actions/setup-python@v5
|
|
36
|
+
with:
|
|
37
|
+
python-version: ${{ github.event.inputs.python-version }}
|
|
38
|
+
|
|
39
|
+
- name: Install quarto
|
|
40
|
+
uses: quarto-dev/quarto-actions/setup@v2
|
|
41
|
+
|
|
42
|
+
- name: Build documentation
|
|
43
|
+
run: |
|
|
44
|
+
uv venv
|
|
45
|
+
. .venv/bin/activate
|
|
46
|
+
uv pip install -e ".[docs]"
|
|
47
|
+
./scripts/docs_build.sh
|
|
48
|
+
working-directory: .
|
|
49
|
+
|
|
50
|
+
- name: Prepare website content
|
|
51
|
+
if: github.ref == 'refs/heads/main'
|
|
52
|
+
run: |
|
|
53
|
+
# Create a temporary directory for filtered content
|
|
54
|
+
mkdir -p temp_website
|
|
55
|
+
|
|
56
|
+
# Navigate to build directory
|
|
57
|
+
cd build
|
|
58
|
+
|
|
59
|
+
# Copy files except .ipynb, node_modules, .quarto, .gitignore, temp_website, _blogs, use-cases, user-guide and talks
|
|
60
|
+
find . -type f -not -path "*/node_modules/*" -not -path "*/.quarto/*" -not -path "./_blogs/*" -not -path "./use-cases/*" -not -path "./user-guide/*" -not -path "./talks/*" -not -name "*.ipynb" -not -name ".gitignore" -exec cp --parents {} ../temp_website/ \;
|
|
61
|
+
|
|
62
|
+
- name: Deploy to Mintlify
|
|
63
|
+
if: github.ref == 'refs/heads/main'
|
|
64
|
+
uses: peaceiris/actions-gh-pages@v4
|
|
65
|
+
with:
|
|
66
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
67
|
+
publish_branch: mintlify-pages
|
|
68
|
+
publish_dir: ./website/temp_website
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
name: Build MkDocs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_call:
|
|
5
|
+
inputs:
|
|
6
|
+
python-version:
|
|
7
|
+
description: 'Python version to use'
|
|
8
|
+
required: true
|
|
9
|
+
default: '3.10'
|
|
10
|
+
type: string
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
build:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v5
|
|
17
|
+
with:
|
|
18
|
+
lfs: true
|
|
19
|
+
fetch-depth: 0
|
|
20
|
+
- uses: astral-sh/setup-uv@v6
|
|
21
|
+
with:
|
|
22
|
+
version: "latest"
|
|
23
|
+
- name: setup python
|
|
24
|
+
uses: actions/setup-python@v5
|
|
25
|
+
with:
|
|
26
|
+
python-version: ${{ github.event.inputs.python-version }}
|
|
27
|
+
|
|
28
|
+
- name: Install quarto
|
|
29
|
+
uses: quarto-dev/quarto-actions/setup@v2
|
|
30
|
+
|
|
31
|
+
- name: Build MkDocs documentation
|
|
32
|
+
run: |
|
|
33
|
+
uv venv
|
|
34
|
+
. .venv/bin/activate
|
|
35
|
+
uv pip install -e ".[docs]"
|
|
36
|
+
./scripts/docs_build_mkdocs.sh --force
|
|
37
|
+
working-directory: .
|
|
38
|
+
|
|
39
|
+
- name: Verify the build
|
|
40
|
+
run: |
|
|
41
|
+
ls -la ./website/mkdocs/site
|
|
42
|
+
working-directory: .
|
|
43
|
+
|
|
44
|
+
- name: Configure Git user
|
|
45
|
+
run: |
|
|
46
|
+
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
47
|
+
git config --local user.name "github-actions[bot]"
|
|
48
|
+
|
|
49
|
+
- name: Deploy docs to GH Pages
|
|
50
|
+
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/0.9'
|
|
51
|
+
run: |
|
|
52
|
+
. .venv/bin/activate
|
|
53
|
+
|
|
54
|
+
# Get version directly from the package
|
|
55
|
+
VERSION=$(python -c 'import os, sys; sys.path.insert(0, os.getcwd()); import autogen; print(".".join(autogen.__version__.split(".")[:3]))')
|
|
56
|
+
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
|
57
|
+
|
|
58
|
+
# Check if version contains "rc"
|
|
59
|
+
IS_RC=$(python -c 'import os, sys, re; sys.path.insert(0, os.getcwd()); import autogen; version = autogen.__version__; print(not bool(re.match(r"^[0-9]+(\.[0-9]+)*$", version)))')
|
|
60
|
+
echo "IS_RC=$IS_RC" >> $GITHUB_ENV
|
|
61
|
+
|
|
62
|
+
echo $VERSION
|
|
63
|
+
echo $IS_RC
|
|
64
|
+
|
|
65
|
+
if [ "$IS_RC" == "False" ] || [ "$VERSION" == "0.9.1post0" ]; then
|
|
66
|
+
cd website/mkdocs && mike deploy -F mkdocs.yml --update-aliases $VERSION latest
|
|
67
|
+
mike set-default --push --allow-empty -F mkdocs.yml latest
|
|
68
|
+
else
|
|
69
|
+
cd website/mkdocs && mike deploy --push -F mkdocs.yml --update-aliases $VERSION
|
|
70
|
+
fi
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
|
|
2
|
+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
3
|
+
|
|
4
|
+
name: ContribGraphRagTests
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
schedule:
|
|
8
|
+
- cron: "0 0 * * 0" # weekly on Sunday at midnight UTC
|
|
9
|
+
workflow_dispatch: # allows manual triggering of the workflow
|
|
10
|
+
# pull_request_target:
|
|
11
|
+
# branches: ["main"]
|
|
12
|
+
# paths:
|
|
13
|
+
# - "autogen/agentchat/contrib/graph_rag/**"
|
|
14
|
+
# - "test/agentchat/contrib/graph_rag/**"
|
|
15
|
+
# - ".github/workflows/contrib-graph-rag-tests.yml"
|
|
16
|
+
# - "pyproject.toml"
|
|
17
|
+
|
|
18
|
+
concurrency:
|
|
19
|
+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
|
|
20
|
+
cancel-in-progress: true
|
|
21
|
+
permissions:
|
|
22
|
+
{}
|
|
23
|
+
# actions: read
|
|
24
|
+
# checks: read
|
|
25
|
+
# contents: read
|
|
26
|
+
# deployments: read
|
|
27
|
+
|
|
28
|
+
jobs:
|
|
29
|
+
GraphRagIntegrationTest-FalkorDB-Ubuntu:
|
|
30
|
+
runs-on: ubuntu-latest
|
|
31
|
+
environment: openai1
|
|
32
|
+
strategy:
|
|
33
|
+
fail-fast: false
|
|
34
|
+
matrix:
|
|
35
|
+
python-version: ["3.10", "3.11"]
|
|
36
|
+
services:
|
|
37
|
+
falkordb:
|
|
38
|
+
image: falkordb/falkordb:edge
|
|
39
|
+
ports:
|
|
40
|
+
- 6379:6379
|
|
41
|
+
steps:
|
|
42
|
+
- name: Get User Permission
|
|
43
|
+
id: checkAccess
|
|
44
|
+
uses: actions-cool/check-user-permission@v2
|
|
45
|
+
with:
|
|
46
|
+
require: write
|
|
47
|
+
username: ${{ github.triggering_actor }}
|
|
48
|
+
env:
|
|
49
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
50
|
+
- name: Check User Permission
|
|
51
|
+
if: steps.checkAccess.outputs.require-result == 'false'
|
|
52
|
+
run: |
|
|
53
|
+
echo "${{ github.triggering_actor }} does not have permissions on this repo."
|
|
54
|
+
echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
|
|
55
|
+
echo "Job originally triggered by ${{ github.actor }}"
|
|
56
|
+
exit 1
|
|
57
|
+
# checkout to pr branch
|
|
58
|
+
- name: Checkout
|
|
59
|
+
uses: actions/checkout@v5
|
|
60
|
+
with:
|
|
61
|
+
ref: ${{ github.event.pull_request.head.sha }}
|
|
62
|
+
- uses: astral-sh/setup-uv@v6
|
|
63
|
+
with:
|
|
64
|
+
version: "latest"
|
|
65
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
66
|
+
uses: actions/setup-python@v5
|
|
67
|
+
with:
|
|
68
|
+
python-version: ${{ matrix.python-version }}
|
|
69
|
+
- name: Install FalkorDB SDK when on linux
|
|
70
|
+
run: |
|
|
71
|
+
uv pip install --system -e .[test,openai,graph-rag-falkor-db]
|
|
72
|
+
- name: Set AUTOGEN_USE_DOCKER based on OS
|
|
73
|
+
shell: bash
|
|
74
|
+
run: |
|
|
75
|
+
echo "AUTOGEN_USE_DOCKER=False" >> $GITHUB_ENV
|
|
76
|
+
- name: Run tests
|
|
77
|
+
env:
|
|
78
|
+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
79
|
+
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
|
|
80
|
+
AZURE_OPENAI_API_BASE: ${{ secrets.AZURE_OPENAI_API_BASE }}
|
|
81
|
+
OAI_CONFIG_LIST: ${{ secrets.OAI_CONFIG_LIST }}
|
|
82
|
+
run: |
|
|
83
|
+
bash scripts/test.sh test/agentchat/contrib/graph_rag/test_falkor_graph_rag.py
|
|
84
|
+
- name: Show coverage report
|
|
85
|
+
run: bash scripts/show-coverage-report.sh
|
|
86
|
+
- name: Upload coverage to Codecov
|
|
87
|
+
if: ${{ !contains(github.ref, 'gh-readonly-queue/') }}
|
|
88
|
+
uses: codecov/codecov-action@v5
|
|
89
|
+
with:
|
|
90
|
+
files: ./coverage.xml
|
|
91
|
+
flags: falkordb, ubuntu-latest, ${{ matrix.python-version }}
|
|
92
|
+
fail_ci_if_error: true
|
|
93
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
94
|
+
|
|
95
|
+
GraphRagIntegrationTest-Neo4j-Llmaindex-Ubuntu:
|
|
96
|
+
runs-on: ubuntu-latest
|
|
97
|
+
environment: openai1
|
|
98
|
+
strategy:
|
|
99
|
+
fail-fast: false
|
|
100
|
+
matrix:
|
|
101
|
+
python-version: ["3.10", "3.11"]
|
|
102
|
+
services:
|
|
103
|
+
neo4j:
|
|
104
|
+
image: neo4j:latest
|
|
105
|
+
ports:
|
|
106
|
+
- 7687:7687
|
|
107
|
+
- 7474:7474
|
|
108
|
+
env:
|
|
109
|
+
NEO4J_AUTH: neo4j/password
|
|
110
|
+
NEO4J_PLUGINS: '["apoc"]'
|
|
111
|
+
NEO4J_apoc_export_file_enabled: true
|
|
112
|
+
NEO4J_apoc_import_file_enabled: true
|
|
113
|
+
NEO4J_apoc_import_file_use__neo4j__config: true
|
|
114
|
+
steps:
|
|
115
|
+
- name: Get User Permission
|
|
116
|
+
id: checkAccess
|
|
117
|
+
uses: actions-cool/check-user-permission@v2
|
|
118
|
+
with:
|
|
119
|
+
require: write
|
|
120
|
+
username: ${{ github.triggering_actor }}
|
|
121
|
+
env:
|
|
122
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
123
|
+
- name: Check User Permission
|
|
124
|
+
if: steps.checkAccess.outputs.require-result == 'false'
|
|
125
|
+
run: |
|
|
126
|
+
echo "${{ github.triggering_actor }} does not have permissions on this repo."
|
|
127
|
+
echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
|
|
128
|
+
echo "Job originally triggered by ${{ github.actor }}"
|
|
129
|
+
exit 1
|
|
130
|
+
# checkout to pr branch
|
|
131
|
+
- name: Checkout
|
|
132
|
+
uses: actions/checkout@v5
|
|
133
|
+
with:
|
|
134
|
+
ref: ${{ github.event.pull_request.head.sha }}
|
|
135
|
+
- uses: astral-sh/setup-uv@v6
|
|
136
|
+
with:
|
|
137
|
+
version: "latest"
|
|
138
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
139
|
+
uses: actions/setup-python@v5
|
|
140
|
+
with:
|
|
141
|
+
python-version: ${{ matrix.python-version }}
|
|
142
|
+
- name: Install Neo4j and Llama-index when on linux
|
|
143
|
+
run: |
|
|
144
|
+
uv pip install --system -e .[test,neo4j]
|
|
145
|
+
- name: Set AUTOGEN_USE_DOCKER based on OS
|
|
146
|
+
shell: bash
|
|
147
|
+
run: |
|
|
148
|
+
echo "AUTOGEN_USE_DOCKER=False" >> $GITHUB_ENV
|
|
149
|
+
- name: Run tests
|
|
150
|
+
env:
|
|
151
|
+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
152
|
+
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
|
|
153
|
+
AZURE_OPENAI_API_BASE: ${{ secrets.AZURE_OPENAI_API_BASE }}
|
|
154
|
+
OAI_CONFIG_LIST: ${{ secrets.OAI_CONFIG_LIST }}
|
|
155
|
+
run: |
|
|
156
|
+
bash scripts/test.sh test/agentchat/contrib/graph_rag/test_neo4j_graph_rag.py
|
|
157
|
+
- name: Show coverage report
|
|
158
|
+
run: bash scripts/show-coverage-report.sh
|
|
159
|
+
- name: Upload coverage to Codecov
|
|
160
|
+
if: ${{ !contains(github.ref, 'gh-readonly-queue/') }}
|
|
161
|
+
uses: codecov/codecov-action@v5
|
|
162
|
+
with:
|
|
163
|
+
files: ./coverage.xml
|
|
164
|
+
flags: neo4j, ubuntu-latest, ${{ matrix.python-version }}
|
|
165
|
+
fail_ci_if_error: true
|
|
166
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
167
|
+
|
|
168
|
+
# Test-Neo4j-Llmaindex-Ubuntu:
|
|
169
|
+
# runs-on: ubuntu-latest
|
|
170
|
+
# strategy:
|
|
171
|
+
# fail-fast: false
|
|
172
|
+
# matrix:
|
|
173
|
+
# python-version: ["3.10", "3.13"]
|
|
174
|
+
# services:
|
|
175
|
+
# neo4j:
|
|
176
|
+
# image: neo4j:latest
|
|
177
|
+
# ports:
|
|
178
|
+
# - 7687:7687
|
|
179
|
+
# - 7474:7474
|
|
180
|
+
# env:
|
|
181
|
+
# NEO4J_AUTH: neo4j/password
|
|
182
|
+
# steps:
|
|
183
|
+
# - uses: actions/checkout@v5
|
|
184
|
+
# - uses: astral-sh/setup-uv@v6
|
|
185
|
+
# with:
|
|
186
|
+
# version: "latest"
|
|
187
|
+
# - name: Set up Python ${{ matrix.python-version }}
|
|
188
|
+
# uses: actions/setup-python@v5
|
|
189
|
+
# with:
|
|
190
|
+
# python-version: ${{ matrix.python-version }}
|
|
191
|
+
# - name: Install Neo4j and Llama-index when on linux
|
|
192
|
+
# run: |
|
|
193
|
+
# uv pip install --system -e .[neo4j,test]
|
|
194
|
+
# - name: Set AUTOGEN_USE_DOCKER based on OS
|
|
195
|
+
# shell: bash
|
|
196
|
+
# run: |
|
|
197
|
+
# echo "AUTOGEN_USE_DOCKER=False" >> $GITHUB_ENV
|
|
198
|
+
# - name: Run tests
|
|
199
|
+
# env:
|
|
200
|
+
# OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
201
|
+
# AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
|
|
202
|
+
# AZURE_OPENAI_API_BASE: ${{ secrets.AZURE_OPENAI_API_BASE }}
|
|
203
|
+
# OAI_CONFIG_LIST: ${{ secrets.OAI_CONFIG_LIST }}
|
|
204
|
+
# run: |
|
|
205
|
+
# bash scripts/test.sh -m "neo4j"
|
|
206
|
+
# - name: Upload coverage to Codecov
|
|
207
|
+
# if: ${{ !contains(github.ref, 'gh-readonly-queue/') }}
|
|
208
|
+
# uses: codecov/codecov-action@v5
|
|
209
|
+
# with:
|
|
210
|
+
# files: ./coverage.xml
|
|
211
|
+
# flags: neo4j, ubuntu-latest, ${{ matrix.python-version }}
|
|
212
|
+
# fail_ci_if_error: true
|
|
213
|
+
# token: ${{ secrets.CODECOV_TOKEN }}
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
# This workflow will install Python dependencies and run tests
|
|
2
|
+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
3
|
+
|
|
4
|
+
name: Contrib tests with LLMs
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
schedule:
|
|
8
|
+
- cron: "0 0 * * 0" # weekly on Sunday at midnight UTC
|
|
9
|
+
workflow_dispatch: # allows manual triggering of the workflow
|
|
10
|
+
# pull_request_target:
|
|
11
|
+
# branches: ["main"]
|
|
12
|
+
# paths:
|
|
13
|
+
# - "autogen/**"
|
|
14
|
+
# - "test/agentchat/contrib/**"
|
|
15
|
+
# - ".github/workflows/contrib-llm-test.yml"
|
|
16
|
+
# - "pyproject.toml"
|
|
17
|
+
|
|
18
|
+
concurrency:
|
|
19
|
+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
|
|
20
|
+
cancel-in-progress: true
|
|
21
|
+
permissions:
|
|
22
|
+
{}
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
TeachableAgent:
|
|
26
|
+
strategy:
|
|
27
|
+
matrix:
|
|
28
|
+
os: [ubuntu-latest]
|
|
29
|
+
python-version: ["3.11"]
|
|
30
|
+
runs-on: ${{ matrix.os }}
|
|
31
|
+
environment: openai1
|
|
32
|
+
steps:
|
|
33
|
+
- name: Get User Permission
|
|
34
|
+
id: checkAccess
|
|
35
|
+
uses: actions-cool/check-user-permission@v2
|
|
36
|
+
with:
|
|
37
|
+
require: write
|
|
38
|
+
username: ${{ github.triggering_actor }}
|
|
39
|
+
env:
|
|
40
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
41
|
+
- name: Check User Permission
|
|
42
|
+
if: steps.checkAccess.outputs.require-result == 'false'
|
|
43
|
+
run: |
|
|
44
|
+
echo "${{ github.triggering_actor }} does not have permissions on this repo."
|
|
45
|
+
echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
|
|
46
|
+
echo "Job originally triggered by ${{ github.actor }}"
|
|
47
|
+
exit 1
|
|
48
|
+
# checkout to pr branch
|
|
49
|
+
- name: Checkout
|
|
50
|
+
uses: actions/checkout@v5
|
|
51
|
+
with:
|
|
52
|
+
ref: ${{ github.event.pull_request.head.sha }}
|
|
53
|
+
- uses: astral-sh/setup-uv@v6
|
|
54
|
+
with:
|
|
55
|
+
version: "latest"
|
|
56
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
57
|
+
uses: actions/setup-python@v5
|
|
58
|
+
with:
|
|
59
|
+
python-version: ${{ matrix.python-version }}
|
|
60
|
+
- name: Install packages and dependencies
|
|
61
|
+
run: |
|
|
62
|
+
docker --version
|
|
63
|
+
uv pip install --system -e .[test,openai,teachable]
|
|
64
|
+
- name: Run tests
|
|
65
|
+
env:
|
|
66
|
+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
67
|
+
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
|
|
68
|
+
AZURE_OPENAI_API_BASE: ${{ secrets.AZURE_OPENAI_API_BASE }}
|
|
69
|
+
OAI_CONFIG_LIST: ${{ secrets.OAI_CONFIG_LIST }}
|
|
70
|
+
run: |
|
|
71
|
+
bash scripts/test.sh test/agentchat/contrib/capabilities/test_teachable_agent.py
|
|
72
|
+
- name: Show coverage report
|
|
73
|
+
run: bash scripts/show-coverage-report.sh
|
|
74
|
+
- name: Upload coverage to Codecov
|
|
75
|
+
if: ${{ !contains(github.ref, 'gh-readonly-queue/') }}
|
|
76
|
+
uses: codecov/codecov-action@v5
|
|
77
|
+
with:
|
|
78
|
+
files: ./coverage.xml
|
|
79
|
+
flags: teachable, ${{ matrix.python-version }}, ${{ matrix.os }}
|
|
80
|
+
fail_ci_if_error: true
|
|
81
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
82
|
+
|
|
83
|
+
AgentBuilder:
|
|
84
|
+
strategy:
|
|
85
|
+
matrix:
|
|
86
|
+
os: [ubuntu-latest]
|
|
87
|
+
python-version: ["3.11"]
|
|
88
|
+
runs-on: ${{ matrix.os }}
|
|
89
|
+
environment: openai1
|
|
90
|
+
steps:
|
|
91
|
+
- name: Get User Permission
|
|
92
|
+
id: checkAccess
|
|
93
|
+
uses: actions-cool/check-user-permission@v2
|
|
94
|
+
with:
|
|
95
|
+
require: write
|
|
96
|
+
username: ${{ github.triggering_actor }}
|
|
97
|
+
env:
|
|
98
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
99
|
+
- name: Check User Permission
|
|
100
|
+
if: steps.checkAccess.outputs.require-result == 'false'
|
|
101
|
+
run: |
|
|
102
|
+
echo "${{ github.triggering_actor }} does not have permissions on this repo."
|
|
103
|
+
echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
|
|
104
|
+
echo "Job originally triggered by ${{ github.actor }}"
|
|
105
|
+
exit 1
|
|
106
|
+
# checkout to pr branch
|
|
107
|
+
- name: Checkout
|
|
108
|
+
uses: actions/checkout@v5
|
|
109
|
+
with:
|
|
110
|
+
ref: ${{ github.event.pull_request.head.sha }}
|
|
111
|
+
- uses: astral-sh/setup-uv@v6
|
|
112
|
+
with:
|
|
113
|
+
version: "latest"
|
|
114
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
115
|
+
uses: actions/setup-python@v5
|
|
116
|
+
with:
|
|
117
|
+
python-version: ${{ matrix.python-version }}
|
|
118
|
+
- name: Install packages and dependencies
|
|
119
|
+
run: |
|
|
120
|
+
docker --version
|
|
121
|
+
uv pip install --system -e ".[test,openai,autobuild,captainagent]"
|
|
122
|
+
- name: Run tests
|
|
123
|
+
env:
|
|
124
|
+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
125
|
+
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
|
|
126
|
+
AZURE_OPENAI_API_BASE: ${{ secrets.AZURE_OPENAI_API_BASE }}
|
|
127
|
+
OAI_CONFIG_LIST: ${{ secrets.OAI_CONFIG_LIST }}
|
|
128
|
+
run: |
|
|
129
|
+
bash scripts/test.sh test/agentchat/contrib/test_agent_builder.py test/agentchat/contrib/test_captainagent.py
|
|
130
|
+
- name: Show coverage report
|
|
131
|
+
run: bash scripts/show-coverage-report.sh
|
|
132
|
+
- name: Upload coverage to Codecov
|
|
133
|
+
if: ${{ !contains(github.ref, 'gh-readonly-queue/') }}
|
|
134
|
+
uses: codecov/codecov-action@v5
|
|
135
|
+
with:
|
|
136
|
+
files: ./coverage.xml
|
|
137
|
+
flags: autobuild, captainagent, ${{ matrix.python-version }}, ${{ matrix.os }}
|
|
138
|
+
fail_ci_if_error: true
|
|
139
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
140
|
+
|
|
141
|
+
ImageGen:
|
|
142
|
+
strategy:
|
|
143
|
+
matrix:
|
|
144
|
+
os: [ubuntu-latest]
|
|
145
|
+
python-version: ["3.13"]
|
|
146
|
+
runs-on: ${{ matrix.os }}
|
|
147
|
+
environment: openai1
|
|
148
|
+
steps:
|
|
149
|
+
- name: Get User Permission
|
|
150
|
+
id: checkAccess
|
|
151
|
+
uses: actions-cool/check-user-permission@v2
|
|
152
|
+
with:
|
|
153
|
+
require: write
|
|
154
|
+
username: ${{ github.triggering_actor }}
|
|
155
|
+
env:
|
|
156
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
157
|
+
- name: Check User Permission
|
|
158
|
+
if: steps.checkAccess.outputs.require-result == 'false'
|
|
159
|
+
run: |
|
|
160
|
+
echo "${{ github.triggering_actor }} does not have permissions on this repo."
|
|
161
|
+
echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
|
|
162
|
+
echo "Job originally triggered by ${{ github.actor }}"
|
|
163
|
+
exit 1
|
|
164
|
+
# checkout to pr branch
|
|
165
|
+
- name: Checkout
|
|
166
|
+
uses: actions/checkout@v5
|
|
167
|
+
with:
|
|
168
|
+
ref: ${{ github.event.pull_request.head.sha }}
|
|
169
|
+
- uses: astral-sh/setup-uv@v6
|
|
170
|
+
with:
|
|
171
|
+
version: "latest"
|
|
172
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
173
|
+
uses: actions/setup-python@v5
|
|
174
|
+
with:
|
|
175
|
+
python-version: ${{ matrix.python-version }}
|
|
176
|
+
- name: Install packages and dependencies
|
|
177
|
+
run: |
|
|
178
|
+
docker --version
|
|
179
|
+
uv pip install --system -e .[test,openai,lmm]
|
|
180
|
+
- name: Run tests
|
|
181
|
+
env:
|
|
182
|
+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
183
|
+
run: |
|
|
184
|
+
bash scripts/test.sh test/agentchat/contrib/capabilities/test_image_generation_capability.py
|
|
185
|
+
- name: Show coverage report
|
|
186
|
+
run: bash scripts/show-coverage-report.sh
|
|
187
|
+
- name: Upload coverage to Codecov
|
|
188
|
+
if: ${{ !contains(github.ref, 'gh-readonly-queue/') }}
|
|
189
|
+
uses: codecov/codecov-action@v5
|
|
190
|
+
with:
|
|
191
|
+
files: ./coverage.xml
|
|
192
|
+
flags: lmm, ${{ matrix.python-version }}, ${{ matrix.os }}
|
|
193
|
+
fail_ci_if_error: true
|
|
194
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
195
|
+
|
|
196
|
+
# https://github.com/marketplace/actions/alls-green#why
|
|
197
|
+
check-contrib-test-llm: # This job does nothing and is only used for the branch protection
|
|
198
|
+
# from: https://github.com/re-actors/alls-green
|
|
199
|
+
# Important: For this to work properly, it is a must to have the job always
|
|
200
|
+
# run, otherwise GitHub will make it skipped when any of the dependencies
|
|
201
|
+
# fail. In some contexts, skipped is interpreted as success which may lead
|
|
202
|
+
# to undersired, unobvious and even dangerous (as in security breach
|
|
203
|
+
# "dangerous") side-effects.
|
|
204
|
+
if: always()
|
|
205
|
+
|
|
206
|
+
needs:
|
|
207
|
+
- TeachableAgent
|
|
208
|
+
- AgentBuilder
|
|
209
|
+
- ImageGen
|
|
210
|
+
|
|
211
|
+
runs-on: ubuntu-latest
|
|
212
|
+
|
|
213
|
+
steps:
|
|
214
|
+
- name: Decide whether the needed jobs succeeded or failed
|
|
215
|
+
uses: re-actors/alls-green@release/v1 # nosemgrep
|
|
216
|
+
with:
|
|
217
|
+
# allowed-failures: docs, linters
|
|
218
|
+
# allowed-skips: non-voting-flaky-job
|
|
219
|
+
jobs: ${{ toJSON(needs) }}
|