massgen 0.1.1__tar.gz → 0.1.3__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 massgen might be problematic. Click here for more details.
- {massgen-0.1.1 → massgen-0.1.3}/CHANGELOG.md +123 -5
- {massgen-0.1.1 → massgen-0.1.3}/CONTRIBUTING.md +5 -5
- {massgen-0.1.1 → massgen-0.1.3}/MANIFEST.in +2 -0
- {massgen-0.1.1 → massgen-0.1.3}/PKG-INFO +57 -52
- massgen-0.1.3/README.md +1191 -0
- massgen-0.1.1/README.md → massgen-0.1.3/README_PYPI.md +51 -51
- massgen-0.1.3/assets/MassGen-v1.gif +0 -0
- massgen-0.1.3/assets/cos.png +0 -0
- massgen-0.1.3/assets/favicon.ico +0 -0
- massgen-0.1.3/assets/logo-dark.png +0 -0
- massgen-0.1.3/assets/logo.png +0 -0
- massgen-0.1.3/assets/massgen-demo-light.gif +0 -0
- massgen-0.1.3/assets/massgen-demo.gif +0 -0
- massgen-0.1.3/assets/release_related_figures/context_path.png +0 -0
- massgen-0.1.3/assets/release_related_figures/copy_file.png +0 -0
- massgen-0.1.3/assets/thumbnail.png +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/__init__.py +1 -1
- {massgen-0.1.1 → massgen-0.1.3}/massgen/agent_config.py +33 -7
- {massgen-0.1.1 → massgen-0.1.3}/massgen/api_params_handler/_api_params_handler_base.py +3 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/api_params_handler/_chat_completions_api_params_handler.py +7 -1
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/azure_openai.py +9 -1
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/base.py +56 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/base_with_custom_tool_and_mcp.py +4 -4
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/capabilities.py +6 -6
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/chat_completions.py +18 -11
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/claude_code.py +9 -1
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/gemini.py +71 -6
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/gemini_utils.py +30 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/grok.py +39 -6
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/response.py +18 -11
- {massgen-0.1.1 → massgen-0.1.3}/massgen/chat_agent.py +9 -3
- {massgen-0.1.1 → massgen-0.1.3}/massgen/cli.py +319 -43
- {massgen-0.1.1 → massgen-0.1.3}/massgen/config_builder.py +163 -18
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/README.md +78 -20
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/three_agents_default.yaml +2 -2
- massgen-0.1.3/massgen/configs/debug/restart_test_controlled.yaml +60 -0
- massgen-0.1.3/massgen/configs/debug/restart_test_controlled_filesystem.yaml +73 -0
- massgen-0.1.3/massgen/configs/tools/code-execution/docker_with_sudo.yaml +35 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/computer_use_browser_example.yaml +56 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/computer_use_docker_example.yaml +65 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/computer_use_example.yaml +50 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/crawl4ai_mcp_example.yaml +67 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/crawl4ai_multi_agent_example.yaml +68 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/multimodal_tools/playwright_with_img_understanding.yaml +98 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/multimodal_tools/understand_audio.yaml +33 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/multimodal_tools/understand_file.yaml +34 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/multimodal_tools/understand_image.yaml +33 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/multimodal_tools/understand_video.yaml +34 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/multimodal_tools/understand_video_example.yaml +54 -0
- massgen-0.1.3/massgen/configs/tools/custom_tools/multimodal_tools/youtube_video_analysis.yaml +59 -0
- massgen-0.1.3/massgen/configs/tools/memory/README.md +199 -0
- massgen-0.1.3/massgen/configs/tools/memory/gpt5mini_gemini_context_window_management.yaml +131 -0
- massgen-0.1.3/massgen/configs/tools/memory/gpt5mini_gemini_no_persistent_memory.yaml +133 -0
- massgen-0.1.3/massgen/configs/tools/memory/test_context_window_management.py +286 -0
- massgen-0.1.3/massgen/configs/tools/multimodal/gpt5mini_gpt5nano_documentation_evolution.yaml +97 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/planning/five_agents_discord_mcp_planning_mode.yaml +7 -29
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/planning/five_agents_filesystem_mcp_planning_mode.yaml +5 -6
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/planning/five_agents_notion_mcp_planning_mode.yaml +4 -4
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/planning/five_agents_twitter_mcp_planning_mode.yaml +4 -4
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/planning/gpt5_mini_case_study_mcp_planning_mode.yaml +2 -2
- {massgen-0.1.1 → massgen-0.1.3}/massgen/docker/README.md +83 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/filesystem_manager/_code_execution_server.py +22 -7
- {massgen-0.1.1 → massgen-0.1.3}/massgen/filesystem_manager/_docker_manager.py +21 -1
- {massgen-0.1.1 → massgen-0.1.3}/massgen/filesystem_manager/_filesystem_manager.py +8 -0
- massgen-0.1.3/massgen/filesystem_manager/_workspace_tools_server.py +818 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/formatter/_gemini_formatter.py +73 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/frontend/coordination_ui.py +175 -257
- {massgen-0.1.1 → massgen-0.1.3}/massgen/frontend/displays/base_display.py +29 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/frontend/displays/rich_terminal_display.py +155 -9
- {massgen-0.1.1 → massgen-0.1.3}/massgen/frontend/displays/simple_display.py +21 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/frontend/displays/terminal_display.py +22 -2
- {massgen-0.1.1 → massgen-0.1.3}/massgen/logger_config.py +50 -6
- {massgen-0.1.1 → massgen-0.1.3}/massgen/message_templates.py +123 -3
- {massgen-0.1.1 → massgen-0.1.3}/massgen/orchestrator.py +652 -44
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_code_execution.py +178 -0
- massgen-0.1.3/massgen/tests/test_intelligent_planning_mode.py +643 -0
- massgen-0.1.3/massgen/tests/test_orchestration_restart.py +204 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/token_manager/token_manager.py +13 -4
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/__init__.py +4 -0
- massgen-0.1.3/massgen/tool/_multimodal_tools/understand_audio.py +193 -0
- massgen-0.1.3/massgen/tool/_multimodal_tools/understand_file.py +550 -0
- massgen-0.1.3/massgen/tool/_multimodal_tools/understand_image.py +212 -0
- massgen-0.1.3/massgen/tool/_multimodal_tools/understand_video.py +313 -0
- massgen-0.1.3/massgen/tool/docs/multimodal_tools.md +779 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/workflow_toolkits/__init__.py +26 -0
- massgen-0.1.3/massgen/tool/workflow_toolkits/post_evaluation.py +216 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/utils.py +1 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen.egg-info/PKG-INFO +57 -52
- {massgen-0.1.1 → massgen-0.1.3}/massgen.egg-info/SOURCES.txt +39 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen.egg-info/requires.txt +5 -0
- {massgen-0.1.1 → massgen-0.1.3}/pyproject.toml +7 -1
- massgen-0.1.1/massgen/filesystem_manager/_workspace_tools_server.py +0 -1815
- {massgen-0.1.1 → massgen-0.1.3}/.env.example +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/LICENSE +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/ag2_adapter.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/base.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/tests/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/tests/test_ag2_adapter.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/tests/test_agent_adapter.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/utils/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/utils/ag2_utils.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/utils/tests/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/adapters/utils/tests/test_ag2_utils.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/api_params_handler/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/api_params_handler/_claude_api_params_handler.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/api_params_handler/_gemini_api_params_handler.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/api_params_handler/_response_api_params_handler.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/claude.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/cli_base.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/BACKEND_ARCHITECTURE.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/CLAUDE_API_RESEARCH.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/Function calling openai responses.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/GEMINI_API_DOCUMENTATION.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/Gemini MCP Integration Analysis.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/MCP_IMPLEMENTATION_CLAUDE_BACKEND.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/MCP_INTEGRATION_RESPONSE_BACKEND.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/OPENAI_GPT5_MODELS.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/OPENAI_RESPONSE_API_TOOL_CALLS.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/OPENAI_response_streaming.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/inference_backend.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/docs/permissions_and_context_files.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/external.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/gemini_mcp_manager.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/gemini_trackers.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/inference.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/backend/lmstudio.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/BACKEND_CONFIGURATION.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/ag2/ag2_case_study.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/ag2/ag2_coder.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/ag2/ag2_coder_case_study.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/ag2/ag2_gemini.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/ag2/ag2_groupchat.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/ag2/ag2_groupchat_gpt.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/ag2/ag2_single_agent.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/fast_timeout_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/gemini_4o_claude.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/gemini_gpt5nano_claude.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/geminicode_4o_claude.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/geminicode_gpt5nano_claude.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/glm_gemini_claude.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/gpt4o_audio_generation.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/gpt4o_image_generation.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/gpt5nano_glm_qwen.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/gpt5nano_image_understanding.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/three_agents_opensource.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/three_agents_vllm.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/two_agents_gemini.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/two_agents_gpt5.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/two_agents_opensource_lmstudio.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/multi/two_qwen_vllm_sglang.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_agent.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_flash2.5.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_gemini2.5pro.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_gpt4o_audio_generation.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_gpt4o_image_generation.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_gpt4o_video_generation.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_gpt5nano.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_gpt5nano_file_search.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_gpt5nano_image_understanding.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_gptoss120b.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_openrouter_audio_understanding.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/basic/single/single_qwen_video_understanding.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/debug/code_execution/command_filtering_blacklist.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/debug/code_execution/command_filtering_whitelist.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/debug/code_execution/docker_verification.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/debug/skip_coordination_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/debug/test_sdk_migration.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/docs/DISCORD_MCP_SETUP.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/docs/TWITTER_MCP_ENESCINAR_SETUP.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/azure/azure_openai_multi.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/azure/azure_openai_single.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/claude/claude.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/gemini/gemini_gpt5nano.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/local/lmstudio.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/openai/gpt5.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/openai/gpt5_nano.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/others/grok_single_agent.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/others/zai_coding_team.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/providers/others/zai_glm45.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/teams/creative/creative_team.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/teams/creative/travel_planning.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/teams/research/news_analysis.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/teams/research/research_team.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/teams/research/technical_analysis.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/code-execution/basic_command_execution.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/code-execution/code_execution_use_case_simple.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/code-execution/docker_claude_code.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/code-execution/docker_multi_agent.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/code-execution/docker_simple.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/code-execution/docker_with_resource_limits.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/code-execution/multi_agent_playwright_automation.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_code_custom_tool_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_code_custom_tool_example_no_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_code_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_code_custom_tool_with_wrong_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_code_wrong_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_custom_tool_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_custom_tool_example_no_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_custom_tool_with_wrong_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/claude_wrong_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gemini_custom_tool_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gemini_custom_tool_example_no_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gemini_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gemini_custom_tool_with_wrong_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gemini_wrong_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/github_issue_market_analysis.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_example_no_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_wrong_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt5_nano_wrong_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt_oss_custom_tool_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt_oss_custom_tool_example_no_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_wrong_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/gpt_oss_wrong_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/grok3_mini_custom_tool_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/grok3_mini_custom_tool_example_no_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_wrong_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/grok3_mini_wrong_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_api_custom_tool_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_api_custom_tool_example_no_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_wrong_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_api_wrong_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_local_custom_tool_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_local_custom_tool_example_no_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_wrong_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/custom_tools/qwen_local_wrong_custom_tool_with_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/cc_gpt5_gemini_filesystem.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/claude_code_context_sharing.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/claude_code_flash2.5.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/claude_code_flash2.5_gptoss.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/claude_code_gpt5nano.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/claude_code_single.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/fs_permissions_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/gemini_gemini_workspace_cleanup.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/gemini_gpt5_filesystem_casestudy.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/gemini_gpt5nano_file_context_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/gemini_gpt5nano_protected_paths.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/gpt5mini_cc_fs_context_path.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/grok4_gpt5_gemini_filesystem.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/multiturn/grok4_gpt5_claude_code_filesystem_multiturn.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/multiturn/grok4_gpt5_gemini_filesystem_multiturn.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/multiturn/two_claude_code_filesystem_multiturn.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/filesystem/multiturn/two_gemini_flash_filesystem_multiturn.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/claude_code_discord_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/claude_code_simple_mcp.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/claude_code_twitter_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/claude_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/claude_mcp_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/five_agents_travel_mcp_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/five_agents_weather_mcp_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gemini_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gemini_mcp_filesystem_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gemini_mcp_filesystem_test_sharing.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gemini_mcp_filesystem_test_single_agent.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gemini_mcp_filesystem_test_with_claude_code.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gemini_mcp_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gemini_notion_mcp.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gpt5_nano_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gpt5_nano_mcp_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gpt5mini_claude_code_discord_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gpt_oss_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/gpt_oss_mcp_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/grok3_mini_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/grok3_mini_mcp_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/multimcp_gemini.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/qwen_api_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/qwen_api_mcp_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/qwen_local_mcp_example.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/mcp/qwen_local_mcp_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/web-search/claude_streamable_http_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/web-search/gemini_streamable_http_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/web-search/gpt5_mini_streamable_http_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/web-search/gpt_oss_streamable_http_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/web-search/grok3_mini_streamable_http_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/web-search/qwen_api_streamable_http_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/tools/web-search/qwen_local_streamable_http_test.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/configs/voting/gemini_gpt_voting_sensitivity.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/coordination_tracker.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/filesystem_manager/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/filesystem_manager/_base.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/filesystem_manager/_file_operation_tracker.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/filesystem_manager/_path_permission_manager.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/formatter/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/formatter/_chat_completions_formatter.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/formatter/_claude_formatter.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/formatter/_formatter_base.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/formatter/_response_formatter.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/frontend/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/frontend/displays/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/frontend/displays/create_coordination_table.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/README.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/backend_utils.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/circuit_breaker.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/client.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/config_validator.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/docs/circuit_breaker.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/docs/client.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/docs/config_validator.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/docs/exceptions.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/docs/security.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/exceptions.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/hooks.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/mcp_tools/security.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/stream_chunk/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/stream_chunk/base.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/stream_chunk/multimodal.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/stream_chunk/text.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/custom_tools_example.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/mcp_test_server.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/multi_turn_conversation_design.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/multiturn_llm_input_analysis.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_azure_openai_backend.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_backend_capabilities.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_backend_event_loop_all.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_case_studies.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_chat_completions_refactor.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_claude_backend.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_claude_code.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_claude_code_context_sharing.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_claude_code_orchestrator.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_cli_backends.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_config_builder.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_custom_tools.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_external_agent_backend.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_final_presentation_fallback.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_gemini_planning_mode.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_grok_backend.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_http_mcp_server.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_integration_simple.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_mcp_blocking.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_message_context_building.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_orchestrator_final_presentation.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_path_permission_manager.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_rich_terminal_display.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_timeout.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_tools.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_v3_3agents.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_v3_simple.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_v3_three_agents.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tests/test_v3_two_agents.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/token_manager/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/README.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_async_helpers.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_basic/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_basic/_two_num_tool.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_code_executors/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_code_executors/_python_executor.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_code_executors/_shell_executor.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_exceptions.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_file_handlers/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_file_handlers/_file_operations.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_manager.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_registered_tool.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_result.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/_self_evolution/_github_issue_analyzer.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/docs/builtin_tools.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/docs/exceptions.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/docs/execution_results.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/docs/manager.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/docs/workflow_toolkits.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/workflow_toolkits/base.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/workflow_toolkits/new_answer.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/tool/workflow_toolkits/vote.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/README.md +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/__init__.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/agent.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/agents.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/backends/gemini.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/backends/grok.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/backends/oai.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/cli.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/config.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/examples/fast-4o-mini-config.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/examples/fast_config.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/examples/production.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/examples/single_agent.yaml +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/logging.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/main.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/orchestrator.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/streaming_display.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/tools.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/types.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen/v1/utils.py +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen.egg-info/dependency_links.txt +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen.egg-info/entry_points.txt +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen.egg-info/not-zip-safe +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/massgen.egg-info/top_level.txt +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/requirements.txt +0 -0
- {massgen-0.1.1 → massgen-0.1.3}/setup.cfg +0 -0
|
@@ -7,16 +7,134 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## Recent Releases
|
|
9
9
|
|
|
10
|
+
**v0.1.3 (October 2025)** - Post-Evaluation Tools & Multimodal Understanding
|
|
11
|
+
Post-evaluation workflow with submit/restart capabilities, custom multimodal understanding tools, Docker sudo mode, and enhanced config builder.
|
|
12
|
+
|
|
13
|
+
**v0.1.2 (October 2025)** - Intelligent Planning Mode & Model Updates
|
|
14
|
+
Automatic irreversibility analysis for MCP tools, selective tool blocking, Claude 4.5 Haiku support, and Grok web search improvements.
|
|
15
|
+
|
|
10
16
|
**v0.1.1 (October 2025)** - Custom Tools, Voting Controls & Documentation
|
|
11
17
|
Custom Python function tools, voting sensitivity controls, interactive config builder, and comprehensive Sphinx documentation.
|
|
12
18
|
|
|
13
|
-
|
|
14
|
-
Official PyPI release with enhanced documentation and installation via `pip install massgen`.
|
|
19
|
+
---
|
|
15
20
|
|
|
16
|
-
|
|
17
|
-
Isolated command execution in Docker containers with resource limits and multi-agent support.
|
|
21
|
+
## [0.1.3] - 2025-10-24
|
|
18
22
|
|
|
19
|
-
|
|
23
|
+
### Added
|
|
24
|
+
- **Post-Evaluation Workflow Tools**: Submit and restart capabilities for winning agents
|
|
25
|
+
- New `PostEvaluationToolkit` class in `massgen/tool/workflow_toolkits/post_evaluation.py`
|
|
26
|
+
- `submit` tool for confirming final answers
|
|
27
|
+
- `restart_orchestration` tool for restarting with improvements and feedback
|
|
28
|
+
- Post-evaluation phase where winning agent evaluates its own answer
|
|
29
|
+
- Support for all API formats (Claude, Response API, Chat Completions)
|
|
30
|
+
- Configuration parameter `enable_post_evaluation_tools` for opt-in/out
|
|
31
|
+
|
|
32
|
+
- **Custom Multimodal Understanding Tools**: Active tools for analyzing workspace files using OpenAI's GPT-4.1 API
|
|
33
|
+
- New `understand_image` tool for analyzing images (PNG, JPEG, JPG) with detailed metadata extraction
|
|
34
|
+
- New `understand_audio` tool for transcribing and analyzing audio files (WAV, MP3, FLAC, OGG)
|
|
35
|
+
- New `understand_video` tool for extracting frames and analyzing video content (MP4, AVI, MOV, WEBM)
|
|
36
|
+
- New `understand_file` tool for processing documents (PDF, DOCX, XLSX, PPTX) with text and metadata extraction
|
|
37
|
+
- Works with any backend (uses OpenAI for analysis)
|
|
38
|
+
- Returns structured JSON with comprehensive metadata
|
|
39
|
+
|
|
40
|
+
- **Docker Sudo Mode**: Enhanced Docker execution with privileged command support
|
|
41
|
+
- New `use_sudo` parameter for Docker execution
|
|
42
|
+
- Sudo mode for commands requiring elevated privileges
|
|
43
|
+
- Enhanced security instructions and documentation
|
|
44
|
+
- Test coverage in `test_code_execution.py`
|
|
45
|
+
|
|
46
|
+
### Changed
|
|
47
|
+
- **Interactive Config Builder Enhancement**: Improved workflow and provider handling
|
|
48
|
+
- Better flow from automatic setup to config builder
|
|
49
|
+
- Auto-detection of environment variables
|
|
50
|
+
- Improved provider-specific configuration handling
|
|
51
|
+
- Integrated multimodal tools selection in config wizard
|
|
52
|
+
|
|
53
|
+
### Fixed
|
|
54
|
+
- **System Message Warning**: Resolved deprecated system message configuration warning
|
|
55
|
+
- Fixed system message handling in `agent_config.py`
|
|
56
|
+
- Updated chat agent to properly handle system messages
|
|
57
|
+
- Removed deprecated warning messages
|
|
58
|
+
|
|
59
|
+
- **Config Builder Issues**: Multiple configuration builder improvements
|
|
60
|
+
- Fixed config display errors
|
|
61
|
+
- Improved config saving across different provider types
|
|
62
|
+
- Better error handling for missing configurations
|
|
63
|
+
|
|
64
|
+
### Documentations, Configurations and Resources
|
|
65
|
+
|
|
66
|
+
- **Multimodal Tools Documentation**: Comprehensive documentation for new multimodal tools
|
|
67
|
+
- `docs/source/user_guide/multimodal.rst`: Updated with custom tools section
|
|
68
|
+
- `massgen/tool/docs/multimodal_tools.md`: Complete 779-line technical documentation
|
|
69
|
+
|
|
70
|
+
- **Docker Sudo Mode Documentation**: Enhanced Docker execution documentation
|
|
71
|
+
- `docs/source/user_guide/code_execution.rst`: Added 98 lines documenting sudo mode
|
|
72
|
+
- `massgen/docker/README.md`: Updated with sudo mode instructions
|
|
73
|
+
|
|
74
|
+
- **Configuration Examples**: New example configurations
|
|
75
|
+
- `configs/tools/multimodal_tools/understand_image.yaml`: Image analysis configuration
|
|
76
|
+
- `configs/tools/multimodal_tools/understand_audio.yaml`: Audio transcription configuration
|
|
77
|
+
- `configs/tools/multimodal_tools/understand_video.yaml`: Video analysis configuration
|
|
78
|
+
- `configs/tools/multimodal_tools/understand_file.yaml`: Document processing configuration
|
|
79
|
+
|
|
80
|
+
- **Example Resources**: New test resources for v0.1.3 features
|
|
81
|
+
- `massgen/configs/resources/v0.1.3-example/multimodality.jpg`: Image example
|
|
82
|
+
- `massgen/configs/resources/v0.1.3-example/Sherlock_Holmes.mp3`: Audio example
|
|
83
|
+
- `massgen/configs/resources/v0.1.3-example/oppenheimer_trailer_1920.mp4`: Video example
|
|
84
|
+
- `massgen/configs/resources/v0.1.3-example/TUMIX.pdf`: PDF document example
|
|
85
|
+
|
|
86
|
+
- **Case Studies**: New case study demonstrating v0.1.3 features
|
|
87
|
+
- `docs/case_studies/multimodal-case-study-video-analysis.md`: Meta-level demonstration of multimodal video understanding with agents analyzing their own case study videos
|
|
88
|
+
|
|
89
|
+
### Technical Details
|
|
90
|
+
- **Major Focus**: Post-evaluation workflow tools, custom multimodal understanding tools, Docker sudo mode
|
|
91
|
+
- **Contributors**: @ncrispino @qidanrui @sonichi @Henry-811 and the MassGen team
|
|
92
|
+
|
|
93
|
+
## [0.1.2] - 2025-10-22
|
|
94
|
+
|
|
95
|
+
### Added
|
|
96
|
+
- **Claude 4.5 Haiku Support**: Added latest Claude Haiku model
|
|
97
|
+
- New model: `claude-haiku-4-5-20251001`
|
|
98
|
+
- Updated model registry in `backend/capabilities.py`
|
|
99
|
+
|
|
100
|
+
### Changed
|
|
101
|
+
- **Planning Mode Enhancement**: Intelligent automatic MCP tool blocking based on operation safety
|
|
102
|
+
- New `_analyze_question_irreversibility()` method in orchestrator analyzes questions to determine if MCP operations are reversible
|
|
103
|
+
- New `set_planning_mode_blocked_tools()`, `get_planning_mode_blocked_tools()`, and `is_mcp_tool_blocked()` methods in backend for selective tool control
|
|
104
|
+
- Dynamically enables/disables planning mode - read-only operations allowed during coordination, write operations blocked
|
|
105
|
+
- Planning mode supports different workspaces without conflicts
|
|
106
|
+
- Zero configuration required - works transparently
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
- **Claude Model Priority**: Reorganized model list in capabilities registry
|
|
110
|
+
- Changed default model from `claude-sonnet-4-20250514` to `claude-sonnet-4-5-20250929`
|
|
111
|
+
- Moved `claude-opus-4-1-20250805` higher in priority order
|
|
112
|
+
- Updated in both Claude and Claude Code backends
|
|
113
|
+
|
|
114
|
+
### Fixed
|
|
115
|
+
- **Grok Web Search**: Resolved web search functionality in Grok backend
|
|
116
|
+
- Fixed `extra_body` parameter handling for Grok's Live Search API
|
|
117
|
+
- New `_add_grok_search_params()` method for proper search parameter injection
|
|
118
|
+
- Enhanced `_stream_with_custom_and_mcp_tools()` to support Grok-specific parameters
|
|
119
|
+
- Improved error handling for conflicting search configurations
|
|
120
|
+
- Better integration with Chat Completions API params handler
|
|
121
|
+
|
|
122
|
+
### Documentations, Configurations and Resources
|
|
123
|
+
|
|
124
|
+
- **Intelligent Planning Mode Case Study**: Complete feature documentation
|
|
125
|
+
- `docs/case_studies/INTELLIGENT_PLANNING_MODE.md`: Comprehensive guide for automatic planning mode
|
|
126
|
+
- Demonstrates automatic irreversibility detection
|
|
127
|
+
- Shows read/write operation classification
|
|
128
|
+
- Includes examples for Discord, filesystem, and Twitter operations
|
|
129
|
+
|
|
130
|
+
- **Configuration Updates**: Enhanced YAML examples
|
|
131
|
+
- Updated 5 planning mode configurations in `configs/tools/planning/` with selective blocking examples
|
|
132
|
+
- Updated `three_agents_default.yaml` with Grok-4-fast model
|
|
133
|
+
- Test coverage in `test_intelligent_planning_mode.py`
|
|
134
|
+
|
|
135
|
+
### Technical Details
|
|
136
|
+
- **Major Focus**: Intelligent planning mode with selective tool blocking, model support enhancements
|
|
137
|
+
- **Contributors**: @franklinnwren @ncrispino @qidanrui @sonichi @Henry-811 and the MassGen team
|
|
20
138
|
|
|
21
139
|
## [0.1.1] - 2025-10-20
|
|
22
140
|
|
|
@@ -267,7 +267,7 @@ Create a `.env` file in the `massgen` directory as described in [README](README.
|
|
|
267
267
|
|
|
268
268
|
## 🔧 Development Workflow
|
|
269
269
|
|
|
270
|
-
> **Important**: Our next version is v0.1.
|
|
270
|
+
> **Important**: Our next version is v0.1.4. If you want to contribute, please contribute to the `dev/v0.1.4` branch.
|
|
271
271
|
|
|
272
272
|
### 1. Create Feature Branch
|
|
273
273
|
|
|
@@ -275,8 +275,8 @@ Create a `.env` file in the `massgen` directory as described in [README](README.
|
|
|
275
275
|
# Fetch latest changes from upstream
|
|
276
276
|
git fetch upstream
|
|
277
277
|
|
|
278
|
-
# Create feature branch from dev/v0.1.
|
|
279
|
-
git checkout -b feature/your-feature-name upstream/dev/v0.1.
|
|
278
|
+
# Create feature branch from dev/v0.1.4
|
|
279
|
+
git checkout -b feature/your-feature-name upstream/dev/v0.1.4
|
|
280
280
|
```
|
|
281
281
|
|
|
282
282
|
### 2. Make Your Changes
|
|
@@ -373,7 +373,7 @@ git push origin feature/your-feature-name
|
|
|
373
373
|
```
|
|
374
374
|
|
|
375
375
|
Then create a pull request on GitHub:
|
|
376
|
-
- Base branch: `dev/v0.1.
|
|
376
|
+
- Base branch: `dev/v0.1.4`
|
|
377
377
|
- Compare branch: `feature/your-feature-name`
|
|
378
378
|
- Add clear description of changes
|
|
379
379
|
- Link any related issues
|
|
@@ -479,7 +479,7 @@ Have a significant feature idea not covered by existing tracks?
|
|
|
479
479
|
- [ ] Tests pass locally
|
|
480
480
|
- [ ] Documentation is updated if needed
|
|
481
481
|
- [ ] Commit messages follow convention
|
|
482
|
-
- [ ] PR targets `dev/v0.1.
|
|
482
|
+
- [ ] PR targets `dev/v0.1.4` branch
|
|
483
483
|
|
|
484
484
|
### PR Description Should Include
|
|
485
485
|
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
include README.md
|
|
2
|
+
include README_PYPI.md
|
|
2
3
|
include LICENSE
|
|
3
4
|
include CONTRIBUTING.md
|
|
4
5
|
include CHANGELOG.md
|
|
5
6
|
include requirements.txt
|
|
6
7
|
recursive-include massgen/configs *.yaml *.yml
|
|
7
8
|
include .env.example
|
|
9
|
+
recursive-include assets *.png *.gif *.jpg *.jpeg *.ico
|
|
8
10
|
recursive-exclude * __pycache__
|
|
9
11
|
recursive-exclude * *.py[co]
|
|
10
12
|
exclude .gitignore
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: massgen
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Multi-Agent Scaling System - A powerful framework for collaborative AI
|
|
5
5
|
Author-email: MassGen Team <contact@massgen.dev>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -49,6 +49,11 @@ Requires-Dist: ag2>=0.9.10
|
|
|
49
49
|
Requires-Dist: pyautogen>=0.10.0
|
|
50
50
|
Requires-Dist: vertexai>=1.71.1
|
|
51
51
|
Requires-Dist: pytest>=8.4.2
|
|
52
|
+
Requires-Dist: python-docx>=1.2.0
|
|
53
|
+
Requires-Dist: openpyxl>=3.1.5
|
|
54
|
+
Requires-Dist: python-pptx>=1.0.2
|
|
55
|
+
Requires-Dist: opencv-python>=4.12.0.88
|
|
56
|
+
Requires-Dist: pypdf2>=3.0.1
|
|
52
57
|
Provides-Extra: dev
|
|
53
58
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
54
59
|
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
@@ -109,7 +114,7 @@ Dynamic: license-file
|
|
|
109
114
|
|
|
110
115
|
<p align="center">
|
|
111
116
|
<a href="https://www.youtube.com/watch?v=Dp2oldJJImw">
|
|
112
|
-
<img src="https://raw.githubusercontent.com/Leezekun/MassGen/main/assets/
|
|
117
|
+
<img src="https://raw.githubusercontent.com/Leezekun/MassGen/main/assets/thumbnail.png" alt="MassGen case study -- Berkeley Agentic AI Summit Question" width="800">
|
|
113
118
|
</a>
|
|
114
119
|
</p>
|
|
115
120
|
|
|
@@ -138,7 +143,7 @@ This project started with the "threads of thought" and "iterative refinement" id
|
|
|
138
143
|
<details open>
|
|
139
144
|
<summary><h3>🆕 Latest Features</h3></summary>
|
|
140
145
|
|
|
141
|
-
- [v0.1.
|
|
146
|
+
- [v0.1.2 Features](#-latest-features-v012)
|
|
142
147
|
</details>
|
|
143
148
|
|
|
144
149
|
<details open>
|
|
@@ -183,15 +188,15 @@ This project started with the "threads of thought" and "iterative refinement" id
|
|
|
183
188
|
<summary><h3>🗺️ Roadmap</h3></summary>
|
|
184
189
|
|
|
185
190
|
- Recent Achievements
|
|
186
|
-
- [v0.1.
|
|
187
|
-
- [v0.0.3 - v0.1.
|
|
191
|
+
- [v0.1.2](#recent-achievements-v012)
|
|
192
|
+
- [v0.0.3 - v0.1.1](#previous-achievements-v003---v011)
|
|
188
193
|
- [Key Future Enhancements](#key-future-enhancements)
|
|
189
194
|
- Bug Fixes & Backend Improvements
|
|
190
195
|
- Advanced Agent Collaboration
|
|
191
196
|
- Expanded Model, Tool & Agent Integrations
|
|
192
197
|
- Improved Performance & Scalability
|
|
193
198
|
- Enhanced Developer Experience
|
|
194
|
-
- [v0.1.
|
|
199
|
+
- [v0.1.3 Roadmap](#v013-roadmap)
|
|
195
200
|
</details>
|
|
196
201
|
|
|
197
202
|
<details open>
|
|
@@ -216,36 +221,36 @@ This project started with the "threads of thought" and "iterative refinement" id
|
|
|
216
221
|
|
|
217
222
|
---
|
|
218
223
|
|
|
219
|
-
## 🆕 Latest Features (v0.1.
|
|
224
|
+
## 🆕 Latest Features (v0.1.2)
|
|
220
225
|
|
|
221
|
-
**🎉 Released: October
|
|
226
|
+
**🎉 Released: October 22, 2025**
|
|
222
227
|
|
|
223
|
-
**What's New in v0.1.
|
|
224
|
-
-
|
|
225
|
-
-
|
|
226
|
-
-
|
|
227
|
-
- **📊 Backend Capabilities Registry** - Centralized feature support tracking
|
|
228
|
-
- **🔬 Self-Evolution Capability** - Agents autonomously analyze GitHub issues and market trends for feature prioritization
|
|
228
|
+
**What's New in v0.1.2:**
|
|
229
|
+
- **🧠 Intelligent Planning Mode** - Automatic question analysis for safe MCP tool blocking
|
|
230
|
+
- **🎭 Claude 4.5 Haiku Support** - Access to latest Claude Haiku model
|
|
231
|
+
- **🔍 Grok Web Search Fix** - Improved web search functionality in Grok backend
|
|
229
232
|
|
|
230
|
-
|
|
233
|
+
**Key Improvements:**
|
|
234
|
+
- Automatically determines if questions require irreversible operations
|
|
235
|
+
- Read-only MCP operations allowed during coordination for better decisions
|
|
236
|
+
- Write operations automatically blocked for safety
|
|
237
|
+
- Zero configuration required - works transparently
|
|
238
|
+
- Enhanced model support with latest Claude 4.5 Haiku
|
|
231
239
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
**Get Started with v0.1.1:**
|
|
240
|
+
**Get Started with v0.1.2:**
|
|
235
241
|
```bash
|
|
236
242
|
# Install or upgrade from PyPI
|
|
237
243
|
pip install --upgrade massgen
|
|
238
244
|
|
|
239
|
-
#
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
massgen --config @examples/tools/custom_tools/claude_custom_tool_example \
|
|
244
|
-
"What's the sum of 123 and 456?"
|
|
245
|
+
# Try intelligent planning mode with MCP tools
|
|
246
|
+
# (Please read the YAML file for required API keys: DISCORD_TOKEN, OPENAI_API_KEY, etc.)
|
|
247
|
+
massgen --config @examples/tools/planning/five_agents_discord_mcp_planning_mode \
|
|
248
|
+
"Check recent messages in our development channel, summarize the discussion, and post a helpful response about the current topic."
|
|
245
249
|
|
|
246
|
-
# Use
|
|
247
|
-
|
|
248
|
-
|
|
250
|
+
# Use latest Claude 4.5 Haiku model
|
|
251
|
+
# (Requires ANTHROPIC_API_KEY in .env)
|
|
252
|
+
massgen --model claude-haiku-4-5-20251001 \
|
|
253
|
+
"Summarize the latest AI developments"
|
|
249
254
|
```
|
|
250
255
|
|
|
251
256
|
→ [See full release history and examples](massgen/configs/README.md#release-history--examples)
|
|
@@ -1082,31 +1087,33 @@ MassGen is currently in its foundational stage, with a focus on parallel, asynch
|
|
|
1082
1087
|
|
|
1083
1088
|
⚠️ **Early Stage Notice:** As MassGen is in active development, please expect upcoming breaking architecture changes as we continue to refine and improve the system.
|
|
1084
1089
|
|
|
1085
|
-
### Recent Achievements (v0.1.
|
|
1090
|
+
### Recent Achievements (v0.1.2)
|
|
1091
|
+
|
|
1092
|
+
**🎉 Released: October 22, 2025**
|
|
1093
|
+
|
|
1094
|
+
#### Intelligent Planning Mode
|
|
1095
|
+
- **Automatic Question Analysis**: New `_analyze_question_irreversibility()` method in orchestrator determines if MCP operations are reversible
|
|
1096
|
+
- **Selective Tool Blocking**: Granular control with `set_planning_mode_blocked_tools()`, `get_planning_mode_blocked_tools()`, and `is_mcp_tool_blocked()` methods
|
|
1097
|
+
- **Dynamic Behavior**: Read-only MCP operations allowed during coordination, write operations blocked for safety
|
|
1098
|
+
- **Zero Configuration**: Works transparently without setup
|
|
1099
|
+
- **Multi-Workspace Support**: Planning mode works across different workspaces without conflicts
|
|
1100
|
+
- **Test Coverage**: Comprehensive tests in `massgen/tests/test_intelligent_planning_mode.py`
|
|
1101
|
+
- **Documentation**: Complete guide in `docs/case_studies/INTELLIGENT_PLANNING_MODE.md`
|
|
1086
1102
|
|
|
1087
|
-
|
|
1103
|
+
#### Model Support & Improvements
|
|
1104
|
+
- **Claude 4.5 Haiku**: Added latest Claude Haiku model `claude-haiku-4-5-20251001`
|
|
1105
|
+
- **Model Priority Updates**: Reorganized Claude model list with updated defaults (`claude-sonnet-4-5-20250929`)
|
|
1106
|
+
- **Grok Web Search Fix**: Resolved `extra_body` parameter handling for Grok's Live Search API with new `_add_grok_search_params()` method
|
|
1088
1107
|
|
|
1089
|
-
####
|
|
1090
|
-
- **
|
|
1091
|
-
- **
|
|
1092
|
-
- **Tool Categories**: Builtin, MCP, and custom tools with automatic discovery and conflict resolution
|
|
1093
|
-
- **40+ Examples**: Ready-to-use configurations in `massgen/configs/tools/custom_tools/`
|
|
1108
|
+
#### Configuration Updates
|
|
1109
|
+
- **Planning Mode Configs**: Updated 5 configurations in `massgen/configs/tools/planning/` with selective blocking examples
|
|
1110
|
+
- **Default Configuration**: Updated `three_agents_default.yaml` with Grok-4-fast model
|
|
1094
1111
|
|
|
1095
|
-
|
|
1096
|
-
- **Three-Tier System**: "lenient", "balanced", "strict" voting modes
|
|
1097
|
-
- **Answer Novelty Detection**: Prevents duplicate submissions with configurable similarity thresholds
|
|
1098
|
-
- **Quality Assurance**: Configurable `max_new_answers_per_agent` and token-based overlap detection
|
|
1099
|
-
- **Configuration**: `massgen/configs/voting/gemini_gpt_voting_sensitivity.yaml`
|
|
1112
|
+
### Previous Achievements (v0.0.3 - v0.1.1)
|
|
1100
1113
|
|
|
1101
|
-
|
|
1102
|
-
- **Gemini Refactoring**: Extracted MCP management (`gemini_mcp_manager.py`), tracking (`gemini_trackers.py`), and utilities
|
|
1103
|
-
- **Capabilities Registry**: New `massgen/backend/capabilities.py` documenting feature support across backends
|
|
1104
|
-
- **Documentation Updates**: Enhanced custom tools guide, reorganized case studies, updated configuration schema
|
|
1105
|
-
- **Case Studies**:
|
|
1106
|
-
- `docs/case_studies/github-issue-market-analysis.md` - Custom tools with GitHub issue market analysis (v0.1.1)
|
|
1107
|
-
- `docs/case_studies/universal-code-execution-mcp.md` - MCP code execution across backends (v0.0.31)
|
|
1114
|
+
✅ **Custom Tools System (v0.1.1)**: User-defined Python function registration using `ToolManager` class in `massgen/tool/_manager.py`, cross-backend support alongside MCP servers, builtin/MCP/custom tool categories with automatic discovery, 40+ examples in `massgen/configs/tools/custom_tools/`, voting sensitivity controls with three-tier quality system (lenient/balanced/strict), answer novelty detection preventing duplicates
|
|
1108
1115
|
|
|
1109
|
-
|
|
1116
|
+
✅ **Backend Enhancements (v0.1.1)**: Gemini architecture refactoring with extracted MCP management (`gemini_mcp_manager.py`), tracking (`gemini_trackers.py`), and utilities, new capabilities registry in `massgen/backend/capabilities.py` documenting feature support across backends
|
|
1110
1117
|
|
|
1111
1118
|
✅ **PyPI Package Release (v0.1.0)**: Official distribution via `pip install massgen` with simplified installation, global `massgen` command accessible from any directory, comprehensive Sphinx documentation at [docs.massgen.ai](https://docs.massgen.ai/), interactive setup wizard with use case presets and API key management, enhanced CLI with `@examples/` prefix for built-in configurations
|
|
1112
1119
|
|
|
@@ -1206,21 +1213,19 @@ MassGen is currently in its foundational stage, with a focus on parallel, asynch
|
|
|
1206
1213
|
|
|
1207
1214
|
We welcome community contributions to achieve these goals.
|
|
1208
1215
|
|
|
1209
|
-
### v0.1.
|
|
1216
|
+
### v0.1.3 Roadmap
|
|
1210
1217
|
|
|
1211
|
-
Version 0.1.
|
|
1218
|
+
Version 0.1.3 focuses on general interoperability and enterprise collaboration:
|
|
1212
1219
|
|
|
1213
1220
|
#### Required Features
|
|
1214
1221
|
- **General Interoperability**: Enable MassGen to orchestrate agents from multiple external frameworks with unified interface
|
|
1215
1222
|
- **Final Agent Submit/Restart Tools**: Enable final agent to decide whether to submit or restart orchestration
|
|
1216
|
-
- **Memory Module - Phase 1**: Long-term memory implementation using mem0 for reasoning and document understanding
|
|
1217
1223
|
|
|
1218
1224
|
Key technical approach:
|
|
1219
1225
|
- **Framework Integration**: Multi-agent coordination supporting external agent frameworks with specialized agent roles (researcher, analyst, critic, synthesizer)
|
|
1220
1226
|
- **Submit/Restart**: Multi-step task verification with access to previous agents' responses and workspaces
|
|
1221
|
-
- **Memory Module**: Session-based memory management with persistent context across conversations
|
|
1222
1227
|
|
|
1223
|
-
For detailed milestones and technical specifications, see the [full v0.1.
|
|
1228
|
+
For detailed milestones and technical specifications, see the [full v0.1.3 roadmap](ROADMAP.md).
|
|
1224
1229
|
|
|
1225
1230
|
---
|
|
1226
1231
|
|