massgen 0.1.0a3__py3-none-any.whl → 0.1.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of massgen might be problematic. Click here for more details.

Files changed (120) hide show
  1. massgen/__init__.py +1 -1
  2. massgen/agent_config.py +17 -0
  3. massgen/api_params_handler/_api_params_handler_base.py +1 -0
  4. massgen/api_params_handler/_chat_completions_api_params_handler.py +15 -2
  5. massgen/api_params_handler/_claude_api_params_handler.py +8 -1
  6. massgen/api_params_handler/_gemini_api_params_handler.py +73 -0
  7. massgen/api_params_handler/_response_api_params_handler.py +8 -1
  8. massgen/backend/base.py +83 -0
  9. massgen/backend/{base_with_mcp.py → base_with_custom_tool_and_mcp.py} +286 -15
  10. massgen/backend/capabilities.py +6 -6
  11. massgen/backend/chat_completions.py +200 -103
  12. massgen/backend/claude.py +115 -18
  13. massgen/backend/claude_code.py +378 -14
  14. massgen/backend/docs/CLAUDE_API_RESEARCH.md +3 -3
  15. massgen/backend/gemini.py +1333 -1629
  16. massgen/backend/gemini_mcp_manager.py +545 -0
  17. massgen/backend/gemini_trackers.py +344 -0
  18. massgen/backend/gemini_utils.py +43 -0
  19. massgen/backend/grok.py +39 -6
  20. massgen/backend/response.py +147 -81
  21. massgen/cli.py +605 -110
  22. massgen/config_builder.py +376 -27
  23. massgen/configs/README.md +123 -80
  24. massgen/configs/basic/multi/three_agents_default.yaml +3 -3
  25. massgen/configs/basic/single/single_agent.yaml +1 -1
  26. massgen/configs/providers/openai/gpt5_nano.yaml +3 -3
  27. massgen/configs/tools/custom_tools/claude_code_custom_tool_example.yaml +32 -0
  28. massgen/configs/tools/custom_tools/claude_code_custom_tool_example_no_path.yaml +28 -0
  29. massgen/configs/tools/custom_tools/claude_code_custom_tool_with_mcp_example.yaml +40 -0
  30. massgen/configs/tools/custom_tools/claude_code_custom_tool_with_wrong_mcp_example.yaml +38 -0
  31. massgen/configs/tools/custom_tools/claude_code_wrong_custom_tool_with_mcp_example.yaml +38 -0
  32. massgen/configs/tools/custom_tools/claude_custom_tool_example.yaml +24 -0
  33. massgen/configs/tools/custom_tools/claude_custom_tool_example_no_path.yaml +22 -0
  34. massgen/configs/tools/custom_tools/claude_custom_tool_with_mcp_example.yaml +35 -0
  35. massgen/configs/tools/custom_tools/claude_custom_tool_with_wrong_mcp_example.yaml +33 -0
  36. massgen/configs/tools/custom_tools/claude_wrong_custom_tool_with_mcp_example.yaml +33 -0
  37. massgen/configs/tools/custom_tools/gemini_custom_tool_example.yaml +24 -0
  38. massgen/configs/tools/custom_tools/gemini_custom_tool_example_no_path.yaml +22 -0
  39. massgen/configs/tools/custom_tools/gemini_custom_tool_with_mcp_example.yaml +35 -0
  40. massgen/configs/tools/custom_tools/gemini_custom_tool_with_wrong_mcp_example.yaml +33 -0
  41. massgen/configs/tools/custom_tools/gemini_wrong_custom_tool_with_mcp_example.yaml +33 -0
  42. massgen/configs/tools/custom_tools/github_issue_market_analysis.yaml +94 -0
  43. massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_example.yaml +24 -0
  44. massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_example_no_path.yaml +22 -0
  45. massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_mcp_example.yaml +35 -0
  46. massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_wrong_mcp_example.yaml +33 -0
  47. massgen/configs/tools/custom_tools/gpt5_nano_wrong_custom_tool_with_mcp_example.yaml +33 -0
  48. massgen/configs/tools/custom_tools/gpt_oss_custom_tool_example.yaml +25 -0
  49. massgen/configs/tools/custom_tools/gpt_oss_custom_tool_example_no_path.yaml +23 -0
  50. massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_mcp_example.yaml +34 -0
  51. massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_wrong_mcp_example.yaml +34 -0
  52. massgen/configs/tools/custom_tools/gpt_oss_wrong_custom_tool_with_mcp_example.yaml +34 -0
  53. massgen/configs/tools/custom_tools/grok3_mini_custom_tool_example.yaml +24 -0
  54. massgen/configs/tools/custom_tools/grok3_mini_custom_tool_example_no_path.yaml +22 -0
  55. massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_mcp_example.yaml +35 -0
  56. massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_wrong_mcp_example.yaml +33 -0
  57. massgen/configs/tools/custom_tools/grok3_mini_wrong_custom_tool_with_mcp_example.yaml +33 -0
  58. massgen/configs/tools/custom_tools/qwen_api_custom_tool_example.yaml +25 -0
  59. massgen/configs/tools/custom_tools/qwen_api_custom_tool_example_no_path.yaml +23 -0
  60. massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_mcp_example.yaml +36 -0
  61. massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_wrong_mcp_example.yaml +34 -0
  62. massgen/configs/tools/custom_tools/qwen_api_wrong_custom_tool_with_mcp_example.yaml +34 -0
  63. massgen/configs/tools/custom_tools/qwen_local_custom_tool_example.yaml +24 -0
  64. massgen/configs/tools/custom_tools/qwen_local_custom_tool_example_no_path.yaml +22 -0
  65. massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_mcp_example.yaml +35 -0
  66. massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_wrong_mcp_example.yaml +33 -0
  67. massgen/configs/tools/custom_tools/qwen_local_wrong_custom_tool_with_mcp_example.yaml +33 -0
  68. massgen/configs/tools/filesystem/claude_code_context_sharing.yaml +1 -1
  69. massgen/configs/tools/planning/five_agents_discord_mcp_planning_mode.yaml +7 -29
  70. massgen/configs/tools/planning/five_agents_filesystem_mcp_planning_mode.yaml +5 -6
  71. massgen/configs/tools/planning/five_agents_notion_mcp_planning_mode.yaml +4 -4
  72. massgen/configs/tools/planning/five_agents_twitter_mcp_planning_mode.yaml +4 -4
  73. massgen/configs/tools/planning/gpt5_mini_case_study_mcp_planning_mode.yaml +2 -2
  74. massgen/configs/voting/gemini_gpt_voting_sensitivity.yaml +67 -0
  75. massgen/formatter/_chat_completions_formatter.py +104 -0
  76. massgen/formatter/_claude_formatter.py +120 -0
  77. massgen/formatter/_gemini_formatter.py +448 -0
  78. massgen/formatter/_response_formatter.py +88 -0
  79. massgen/frontend/coordination_ui.py +4 -2
  80. massgen/logger_config.py +35 -3
  81. massgen/message_templates.py +56 -6
  82. massgen/orchestrator.py +512 -16
  83. massgen/stream_chunk/base.py +3 -0
  84. massgen/tests/custom_tools_example.py +392 -0
  85. massgen/tests/mcp_test_server.py +17 -7
  86. massgen/tests/test_config_builder.py +423 -0
  87. massgen/tests/test_custom_tools.py +401 -0
  88. massgen/tests/test_intelligent_planning_mode.py +643 -0
  89. massgen/tests/test_tools.py +127 -0
  90. massgen/token_manager/token_manager.py +13 -4
  91. massgen/tool/README.md +935 -0
  92. massgen/tool/__init__.py +39 -0
  93. massgen/tool/_async_helpers.py +70 -0
  94. massgen/tool/_basic/__init__.py +8 -0
  95. massgen/tool/_basic/_two_num_tool.py +24 -0
  96. massgen/tool/_code_executors/__init__.py +10 -0
  97. massgen/tool/_code_executors/_python_executor.py +74 -0
  98. massgen/tool/_code_executors/_shell_executor.py +61 -0
  99. massgen/tool/_exceptions.py +39 -0
  100. massgen/tool/_file_handlers/__init__.py +10 -0
  101. massgen/tool/_file_handlers/_file_operations.py +218 -0
  102. massgen/tool/_manager.py +634 -0
  103. massgen/tool/_registered_tool.py +88 -0
  104. massgen/tool/_result.py +66 -0
  105. massgen/tool/_self_evolution/_github_issue_analyzer.py +369 -0
  106. massgen/tool/docs/builtin_tools.md +681 -0
  107. massgen/tool/docs/exceptions.md +794 -0
  108. massgen/tool/docs/execution_results.md +691 -0
  109. massgen/tool/docs/manager.md +887 -0
  110. massgen/tool/docs/workflow_toolkits.md +529 -0
  111. massgen/tool/workflow_toolkits/__init__.py +57 -0
  112. massgen/tool/workflow_toolkits/base.py +55 -0
  113. massgen/tool/workflow_toolkits/new_answer.py +126 -0
  114. massgen/tool/workflow_toolkits/vote.py +167 -0
  115. {massgen-0.1.0a3.dist-info → massgen-0.1.2.dist-info}/METADATA +87 -129
  116. {massgen-0.1.0a3.dist-info → massgen-0.1.2.dist-info}/RECORD +120 -44
  117. {massgen-0.1.0a3.dist-info → massgen-0.1.2.dist-info}/WHEEL +0 -0
  118. {massgen-0.1.0a3.dist-info → massgen-0.1.2.dist-info}/entry_points.txt +0 -0
  119. {massgen-0.1.0a3.dist-info → massgen-0.1.2.dist-info}/licenses/LICENSE +0 -0
  120. {massgen-0.1.0a3.dist-info → massgen-0.1.2.dist-info}/top_level.txt +0 -0
@@ -1,12 +1,12 @@
1
- massgen/__init__.py,sha256=QOvL8mdc_ZJsXZYUL9Vz-QnXa0zflAPFBcBQNR59_Yo,7976
2
- massgen/agent_config.py,sha256=FQZhOvEJq-h9oI2YEDKXX5o6sAWxBg2yu_g9NrI1sP0,30661
1
+ massgen/__init__.py,sha256=a_L5OU7YQP9RXLSXxSdLfH9EVqGKzGLJq2bhHwvHUXA,7974
2
+ massgen/agent_config.py,sha256=5jKQC7lf3B-XlZg2zw3UyUvPkZxzPM2TUIqzEubjg_w,31797
3
3
  massgen/chat_agent.py,sha256=doJSk6yhaqE1-Qy1AYpsSvUiJwHB92xXCBeS8hGh8wQ,18567
4
- massgen/cli.py,sha256=5SZ2K1eU13H6kZZERycWSJ5PHmFdF8l_s4QocY2x7iQ,84217
5
- massgen/config_builder.py,sha256=wR94ptSnnGH8LMw6J0lEZh-X5qHcKj8AWoUM2mIN3Pw,112897
4
+ massgen/cli.py,sha256=eiaTosu5sxJx7sVpSdaxy3d4Pfi4zk4vbEq_WxYLX2A,103095
5
+ massgen/config_builder.py,sha256=m_igDLQ09NWoQfjROwHx79Ugx3e2fsR8ywxz_JWgYno,133348
6
6
  massgen/coordination_tracker.py,sha256=_r8Man3uomovpXKHrlc4YBI030tkuavYQ-6fEk2JsfM,28201
7
- massgen/logger_config.py,sha256=wga7v8yIASxDaO7vwjbw_gyCxe0ZxIggV6kGyyMGYlM,22686
8
- massgen/message_templates.py,sha256=toBE7Kdn0I6SsM6-DxC1El0nPBFWgakFZcAPdQVfl5E,37945
9
- massgen/orchestrator.py,sha256=w4McgCVsPy5v1H2JUX7uGpOJ02A1H1Iqmi-dfcXSTQk,124565
7
+ massgen/logger_config.py,sha256=Noe76y5nPe6bwvsxqbFHI5aipKJ6UVdgmPE89D7AqO0,23786
8
+ massgen/message_templates.py,sha256=jbzAMQDVjgn1LIL6TD-Pw3PwpnRLW7ofM_THGhXFRhY,40901
9
+ massgen/orchestrator.py,sha256=VwC_pYFMjWmHbtNkuEnv9DaXbM_AhF5mI99ctmhnGyA,150216
10
10
  massgen/utils.py,sha256=ssCKRV5T5LgY4LDSHBGeUUrAdgDNTf4rUXeFVKYUM9Y,2992
11
11
  massgen/adapters/__init__.py,sha256=lYDbplvbiRfXup5e_Q3GzvGujP3V0vqElEJqVfQog2Q,726
12
12
  massgen/adapters/ag2_adapter.py,sha256=71I1acslxIrTPDWTkiTICsp2lyRrrc_F4SwQqa2K_vY,18465
@@ -19,27 +19,31 @@ massgen/adapters/utils/ag2_utils.py,sha256=R08NpX6gY2hc74jRAqF5rPaLziifhacBMFOGL
19
19
  massgen/adapters/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  massgen/adapters/utils/tests/test_ag2_utils.py,sha256=AUI2xjOUBbi71h0DBHF3zBjAB3P01Ie-L1PeiLlG3VE,4030
21
21
  massgen/api_params_handler/__init__.py,sha256=Qki1IO0xdBP8dBN1DUjR2bK0GyVkQIJgzUc01TWiQnI,439
22
- massgen/api_params_handler/_api_params_handler_base.py,sha256=YRWpHe_nfd6N6JtrSryNg9OEcmcb1mw0qzq1gkVCB_o,3451
23
- massgen/api_params_handler/_chat_completions_api_params_handler.py,sha256=oC7yxO46hA0oImK2alfj9BoAuUKoO-Kq4Tr9A1E8jDM,6964
24
- massgen/api_params_handler/_claude_api_params_handler.py,sha256=tyQ08rwhk70c5EoOwsUOuh8oaVzirPWrZ__nRiTo9-c,3603
25
- massgen/api_params_handler/_response_api_params_handler.py,sha256=4qtu4Ku_E4T-fvnb33DD2HcsoBoqtHg0k1Fi2F2xy8M,4616
22
+ massgen/api_params_handler/_api_params_handler_base.py,sha256=bpkSK1eIDeYO2Z4SuWCIMmgVv5TqHrJ4_VCjZC9Kj7M,3523
23
+ massgen/api_params_handler/_chat_completions_api_params_handler.py,sha256=LO-ZADOl0CifhnBFku19ilcABXAR6dlJFOKGuAmMSu4,7713
24
+ massgen/api_params_handler/_claude_api_params_handler.py,sha256=9rlmPI0smid7DezGWb2vkx7rEVqtFffOaAQi_rtE_4k,3946
25
+ massgen/api_params_handler/_gemini_api_params_handler.py,sha256=AsWzdOOCjXT-TQFsupZyKsdhNxmmD852VB6hk8siH-s,2494
26
+ massgen/api_params_handler/_response_api_params_handler.py,sha256=rk8EGVF2FgCBoQlM3_qIy3M5ihFwwcbEub44mB7aPFg,4962
26
27
  massgen/backend/__init__.py,sha256=hIxCbgDqHgO6zzFXnulR8dx2gm1Yi4IDdutDsja1fSg,1749
27
28
  massgen/backend/azure_openai.py,sha256=8PnIhRgTylazrFnRe0d_uk0qIEs1VJ48jdCpxcjjHT4,17962
28
- massgen/backend/base.py,sha256=9gGT8FySocv3wUIr1hBzsAwbI4rfRGfIGap8849OaeI,17731
29
- massgen/backend/base_with_mcp.py,sha256=TpjeC40ohr2WraIMN14IuZBfYGIwOlkmwJZoFEXB5w4,45922
30
- massgen/backend/capabilities.py,sha256=rq9aRNH3IWOFVgt9PUX_l32h5c_Yuc86hnPbgXbfuDo,13215
31
- massgen/backend/chat_completions.py,sha256=dNvrFC6Rzc8KrgbmhrrfhrMr1J9-GYY5kAhswgRZGyw,32198
32
- massgen/backend/claude.py,sha256=ZJ_e4xtStcgx94wnJw-SRsfy1Namq1BIBfWCzV6uCF0,54951
33
- massgen/backend/claude_code.py,sha256=4b4CT3zB5nxG8k835WxZCd4dKPIV1LgjniAsAINf-70,53240
29
+ massgen/backend/base.py,sha256=gnN0_of7BAfXWdydzjZORjPYCSLIVH-3QDI8eb7rL2A,21173
30
+ massgen/backend/base_with_custom_tool_and_mcp.py,sha256=kqpl3uAWysdplAHjc1O5Z2InkjVw8CQTXo17LtNmCbE,57511
31
+ massgen/backend/capabilities.py,sha256=kPM_yjnzI34XuZnYw9hlkcUNRvqlZUKdbKVjH_A4iQg,13229
32
+ massgen/backend/chat_completions.py,sha256=V2xSIGEsxCfewEbeN7LXI3yQdoPecUOCY_pbKPvs4N4,36646
33
+ massgen/backend/claude.py,sha256=ttYzZoUlJEOET_WE0-qvseUHBs7YaTix2mBSCLoXH1I,59426
34
+ massgen/backend/claude_code.py,sha256=HHYOB139GFGEKMlepCUX6mVvLnQa6D6G5Gssyj6k0no,68722
34
35
  massgen/backend/cli_base.py,sha256=SlaDxjUdyhhbby6XqU8FdTCtcLuAGR0AmQePDRDSDW4,6820
35
36
  massgen/backend/external.py,sha256=uKl91wgJP4psSBuvBCg33nH8bkMcuNVoKE4vNaCNXP4,4300
36
- massgen/backend/gemini.py,sha256=RgdSuQVBbhApSujB1xNZ3TZiGSqAtaPw8u6SHIVMX28,101326
37
- massgen/backend/grok.py,sha256=lSRW_uaRgV32xISfwpZZQqIW2KQP3fgrJ3gqWuJYCp4,2914
37
+ massgen/backend/gemini.py,sha256=uoq-2GlP221EybsEwcI8qyhsXbbmuti4ycJCCs0oxrA,115838
38
+ massgen/backend/gemini_mcp_manager.py,sha256=Uakj7TTrrbqGkj70aE2avNHInYJevkZ41H3sfcnzL34,23635
39
+ massgen/backend/gemini_trackers.py,sha256=MQCr1KcDIfWClXCWWqpMDMx8eB38GeCSmm-4-xs89CQ,12557
40
+ massgen/backend/gemini_utils.py,sha256=iRKufFUg-yvxD1Hpn1vZPmh5YrIvPEpX1p-_6r0nFPo,1473
41
+ massgen/backend/grok.py,sha256=H1AjXBTZWGi0qVoQ305gb8WzvChqnB_HQQxncPGeHvU,4147
38
42
  massgen/backend/inference.py,sha256=PT_e9fDEHlME0TtJT7_dse2aPtaHliYul9D52n_nXns,5971
39
43
  massgen/backend/lmstudio.py,sha256=UEd3Wkdy9r5ceJ3oM7_LR3MYEQv4ghcn2je5F1d-dyU,7267
40
- massgen/backend/response.py,sha256=pUG2frZtLxatfreKA41r5TutglGalOyBtNGK8qDDib4,53527
44
+ massgen/backend/response.py,sha256=QFhMSUFsTFqMuVmJsKX8lQyCXT9I2XHE9dQjGk12RxA,57061
41
45
  massgen/backend/docs/BACKEND_ARCHITECTURE.md,sha256=so30oNBwmJBeQz3rHuFCECJjC2Sufwc40--2Rb01jeU,4483
42
- massgen/backend/docs/CLAUDE_API_RESEARCH.md,sha256=wovwi7WBBv8463yDRVmFaX_YR_b7gvOo7qaPmS_tFMw,9842
46
+ massgen/backend/docs/CLAUDE_API_RESEARCH.md,sha256=maYwOERkRotnkS2_YJoDTbe6ZDdI-DccKgR1oXHtPxA,9842
43
47
  massgen/backend/docs/Function calling openai responses.md,sha256=ffrh5nEkO0tQGO8vJeamcWsgIEB_37XShrSYKLZldTg,37480
44
48
  massgen/backend/docs/GEMINI_API_DOCUMENTATION.md,sha256=twmiwQ3JDfYQsPK5YSg7ETu_SJYtnKXK-6_CZcBkKxk,12354
45
49
  massgen/backend/docs/Gemini MCP Integration Analysis.md,sha256=yIaqleQnawMHJ_ygHMw_8Kc9AIw3nIohwOINiNway54,33122
@@ -51,7 +55,7 @@ massgen/backend/docs/OPENAI_response_streaming.md,sha256=ees0GpokNKgg_aAuAODJifD
51
55
  massgen/backend/docs/inference_backend.md,sha256=NNxvh6JWc2BPWLQrAJKXsXAyvggT-_KRHmboulYNw7Y,6372
52
56
  massgen/backend/docs/permissions_and_context_files.md,sha256=1afQsz-s6rQdNmOgs2GhPHrYOd1t4cM-2EqkOArR42Q,40484
53
57
  massgen/configs/BACKEND_CONFIGURATION.md,sha256=eJL8dBpGnb3o705R0Uk5QbWanKG9C30jFd8U3gqlbeE,13051
54
- massgen/configs/README.md,sha256=Zn8nKdYXjmnbwr6PqQmiJ68P0AIJXq-WKlq3TBHJk-0,28867
58
+ massgen/configs/README.md,sha256=HEI59MjPZ2hgGXNPrsv-eV1mjq0vTj7TzmLuxhPCMzA,29815
55
59
  massgen/configs/ag2/ag2_case_study.yaml,sha256=kiQanWKY3VyZD6Sl-0ZBMOcWoOWU2AF26IJKKhKak4k,767
56
60
  massgen/configs/ag2/ag2_coder.yaml,sha256=jtIBULpg55BthnQ-YRXrJ1xG7Q_IqK-1N5qCitC_A_4,1131
57
61
  massgen/configs/ag2/ag2_coder_case_study.yaml,sha256=3mE5mq9zU7V6RZ_XsgiA_-4S04zCNCAYPH7FmTE1suE,1273
@@ -69,14 +73,14 @@ massgen/configs/basic/multi/gpt4o_audio_generation.yaml,sha256=Pgqjhvlpk4wIdVJkh
69
73
  massgen/configs/basic/multi/gpt4o_image_generation.yaml,sha256=1lSvyvoxzRKcfUqqFiGE3ns4FxHp81JpyMhO94MACsw,900
70
74
  massgen/configs/basic/multi/gpt5nano_glm_qwen.yaml,sha256=FHSBx2QbThKO9Di9YqZf7knyD5Jw0BEvCWEP0z8HSgo,552
71
75
  massgen/configs/basic/multi/gpt5nano_image_understanding.yaml,sha256=cIJYs17uzDlkfAbaIShuofZcHVKO4JNgtWGHnjexORs,865
72
- massgen/configs/basic/multi/three_agents_default.yaml,sha256=T8DdP82b54DunSAOMOjshfkKAGJYbXXo1ELVZvtbaB4,1325
76
+ massgen/configs/basic/multi/three_agents_default.yaml,sha256=ereX5et4cvD3GVhON6_x-O7EHb-r--CmTht3Fstdrbk,1430
73
77
  massgen/configs/basic/multi/three_agents_opensource.yaml,sha256=PMBPCza71F3d4QuDuh-ory4sjx7pi9huG6rM09Sguhg,705
74
78
  massgen/configs/basic/multi/three_agents_vllm.yaml,sha256=gfU1l6CCCMJqXlQB7K6TfjwR4fDynG1AFfQa6VQUW1Y,547
75
79
  massgen/configs/basic/multi/two_agents_gemini.yaml,sha256=AotP_V0A0jiIIonB_J8jeIO8fZxCETsQGuJkbjwCYEU,930
76
80
  massgen/configs/basic/multi/two_agents_gpt5.yaml,sha256=-WGyLurnM1nP2ZxcoX8mS4OkeGrUT4wHHcmNqKAU6Xc,1282
77
81
  massgen/configs/basic/multi/two_agents_opensource_lmstudio.yaml,sha256=QLnRas-5tkfKeYpBjbLjD_8nIqicJX6KG1d_uuty_Cw,737
78
82
  massgen/configs/basic/multi/two_qwen_vllm_sglang.yaml,sha256=tJX7IB9OrjpUbnBZztkWLfJfT7yfhgBebWLsjAqjMCI,1084
79
- massgen/configs/basic/single/single_agent.yaml,sha256=7woZ1Y2HVJ0Cwyya3SadsMG9yAAfNpVb7IJoXtGwRqU,529
83
+ massgen/configs/basic/single/single_agent.yaml,sha256=6ytg3l8HpjWnObCou_KZXD5IpoDRD1V4IAPBfjO82zo,543
80
84
  massgen/configs/basic/single/single_flash2.5.yaml,sha256=r9j80dQXaC4zSW4PoSlvpsg6-7bkq5W5Act9yWI7J6c,1288
81
85
  massgen/configs/basic/single/single_gemini2.5pro.yaml,sha256=KOKCrDP05vYOmSHU9sDkSwYnc2eWpNTKdhEWsg5QQmM,433
82
86
  massgen/configs/basic/single/single_gpt4o_audio_generation.yaml,sha256=k861UZutFeJmRXkHkcPH90pXKUnTIsM3sQJ9a5oL52I,1020
@@ -101,7 +105,7 @@ massgen/configs/providers/claude/claude.yaml,sha256=IOvxJ2s4_RC5zWRk3sBsiVwaL2XG
101
105
  massgen/configs/providers/gemini/gemini_gpt5nano.yaml,sha256=bhDiEK130KnZhbgHw8dngqHLvCFpjz7jQpE8MxCR4nU,1114
102
106
  massgen/configs/providers/local/lmstudio.yaml,sha256=YZ2528fhaCDWZ4VT3T1FpcklEfuOrBnKaEXy3cIkEoE,375
103
107
  massgen/configs/providers/openai/gpt5.yaml,sha256=CU8voZWX9K3uVkI27RnhCRuZXq9p-qwdoBpujzRmSvI,1591
104
- massgen/configs/providers/openai/gpt5_nano.yaml,sha256=KIgtOjoaszl_LE4myal8sM-geNG5gi0IrIJOFFSzpiw,1585
108
+ massgen/configs/providers/openai/gpt5_nano.yaml,sha256=4BQlzY-oqGpDiMR6AeEmiZmFgA7u1s6Q3OBlOUaCcnM,1582
105
109
  massgen/configs/providers/others/grok_single_agent.yaml,sha256=n8asAlUzbgVDLPGDjgB1Yu0DoZ-wgyyPnzl1PhZtlvw,668
106
110
  massgen/configs/providers/others/zai_coding_team.yaml,sha256=IvyRE6MypknqTgRJTcVPecS__C8sTfW4Iiw72Fhtpls,4880
107
111
  massgen/configs/providers/others/zai_glm45.yaml,sha256=MSpi-VQ2oczB1YbSZzP16yEcG-4gay1931XsenpPQE0,223
@@ -117,8 +121,49 @@ massgen/configs/tools/code-execution/docker_multi_agent.yaml,sha256=N4Z6H-EGLcYH
117
121
  massgen/configs/tools/code-execution/docker_simple.yaml,sha256=ctM5U8MU8JXOof7ZBpjctH0fDGctzRXS0ySpBKjrjcg,1088
118
122
  massgen/configs/tools/code-execution/docker_with_resource_limits.yaml,sha256=B87ceocgmF_XqeGhQhOAZWiMTXMs9qlMZOVeqbug74g,1185
119
123
  massgen/configs/tools/code-execution/multi_agent_playwright_automation.yaml,sha256=Y730nR5O737u85xmbkXX-Gb3yDIgrnx2HRNNijQYWG4,2124
124
+ massgen/configs/tools/custom_tools/claude_code_custom_tool_example.yaml,sha256=2pksSj-t_HVuCuEUJl7O1yX5lAs5OqdarVBHGT4lmeU,1278
125
+ massgen/configs/tools/custom_tools/claude_code_custom_tool_example_no_path.yaml,sha256=RogCKe-ZF2FNNVX8QBKbg-k1g1s2jzqXF6zWw5YgZWw,1085
126
+ massgen/configs/tools/custom_tools/claude_code_custom_tool_with_mcp_example.yaml,sha256=_XVYv6OjAN5glVLkp-8g30icWVz5hGvzzu8tUDF9EtM,1797
127
+ massgen/configs/tools/custom_tools/claude_code_custom_tool_with_wrong_mcp_example.yaml,sha256=4lBy0prZ8DvfM0PE3EqrOrCHVJCH7Ql6sKlaGF4esgg,1775
128
+ massgen/configs/tools/custom_tools/claude_code_wrong_custom_tool_with_mcp_example.yaml,sha256=s31uZUgYepu-9RhM7ZPQ7rqGL4nQY1P_lbIdCCDqb3s,1732
129
+ massgen/configs/tools/custom_tools/claude_custom_tool_example.yaml,sha256=FFTBRdsxvCMKY0O29jhOuSvFr91pDuviysuzfRjhHjk,977
130
+ massgen/configs/tools/custom_tools/claude_custom_tool_example_no_path.yaml,sha256=hqqoy_Ud7YZIbj88jfFCrABjfdb0Y6xg2qIkRuzEcaw,896
131
+ massgen/configs/tools/custom_tools/claude_custom_tool_with_mcp_example.yaml,sha256=XdjRJc20VX5KHEihpqITI6A2c1pMN2of8fysiQeCN0A,1604
132
+ massgen/configs/tools/custom_tools/claude_custom_tool_with_wrong_mcp_example.yaml,sha256=V9VLjM16o59ipc_ktBqlLyYph27J4EBWTG0kB8nK_jc,1582
133
+ massgen/configs/tools/custom_tools/claude_wrong_custom_tool_with_mcp_example.yaml,sha256=pJdkL0yQZscsHWJynUkmXv7BufZILs12PxAHM2AL8cI,1556
134
+ massgen/configs/tools/custom_tools/gemini_custom_tool_example.yaml,sha256=5-XCjo2O7SqyTILWD8x3qPD7AWafLWkhBW5giN4JyMM,981
135
+ massgen/configs/tools/custom_tools/gemini_custom_tool_example_no_path.yaml,sha256=Hd6zC7Mms1PxrNQ9KpmVFgSDeQCzejpIRzzJgVqVkQY,900
136
+ massgen/configs/tools/custom_tools/gemini_custom_tool_with_mcp_example.yaml,sha256=YBNSQugHOWsaz3VGPf_RIj59bPPNssftVqHEkvYN8yE,1614
137
+ massgen/configs/tools/custom_tools/gemini_custom_tool_with_wrong_mcp_example.yaml,sha256=d13-pVFtqAI-Zfo8kWzpr7nUW5iP6DPsMpz1XKk4Bqc,1586
138
+ massgen/configs/tools/custom_tools/gemini_wrong_custom_tool_with_mcp_example.yaml,sha256=2E-W6iEHTiD1J7FRJmOnSeciCRz7KeONmYkWln-rOtM,1544
139
+ massgen/configs/tools/custom_tools/github_issue_market_analysis.yaml,sha256=VTXtsiPdoUksAfN6scjfYtFjDLK-n8W5awxXPm6HfNs,3658
140
+ massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_example.yaml,sha256=kFMxb2UiRtGy6YfSWo1b0uCVsB8jULcfj-noEiLMYFA,960
141
+ massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_example_no_path.yaml,sha256=EmuMhlphEMr3-wKlC2mip3pQbaEQ2cI113tTp4ex43Y,897
142
+ massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_mcp_example.yaml,sha256=6fy-O_NOzy1_rigu0Iyl3HmJC59X12oeHWT_dXf0uJ4,1605
143
+ massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_wrong_mcp_example.yaml,sha256=xruzmYhWQzhkdA_K5xfwpa0jnFbs0WkCf1FaxpjpN1M,1583
144
+ massgen/configs/tools/custom_tools/gpt5_nano_wrong_custom_tool_with_mcp_example.yaml,sha256=3AF4MsgEo6K9uHdWnbcQyzXcDQBjN3RlTSbHv_PgJ9Q,1557
145
+ massgen/configs/tools/custom_tools/gpt_oss_custom_tool_example.yaml,sha256=C0i07OuIP5iaucT1W0O9LIKAhOzEB1uBxHt4BuLGCrU,1013
146
+ massgen/configs/tools/custom_tools/gpt_oss_custom_tool_example_no_path.yaml,sha256=7p-VfqnmR93R8gOaomg4AcJJO9cvKi-q2dpIi6Jb6jw,939
147
+ massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_mcp_example.yaml,sha256=drzRyshA6fPttgB0jxi9NF0Y3ybHZ5OqaBePLHo5sdE,1571
148
+ massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_wrong_mcp_example.yaml,sha256=GGV-0Ob2z_TKvMqJDIdir8RgP8d2w4i4QwdrB13g9cQ,1625
149
+ massgen/configs/tools/custom_tools/gpt_oss_wrong_custom_tool_with_mcp_example.yaml,sha256=FbReuXVVxbOYt76UMH6ZDrj07Z7MRYZUD33Xb0G7ki0,1583
150
+ massgen/configs/tools/custom_tools/grok3_mini_custom_tool_example.yaml,sha256=A_4hqjiRCYq-YOc3v1TwCFkleyCuzcHuZ2HJu8BM2vQ,1064
151
+ massgen/configs/tools/custom_tools/grok3_mini_custom_tool_example_no_path.yaml,sha256=LJk9912YYjJlZeDli9qLGj7Cb6GZOCrt3va8RjUXCIA,882
152
+ massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_mcp_example.yaml,sha256=wdZc-sgtM0vPtPl6OQbIoOFX7Kd7swQeY-HzJqwgLYQ,1590
153
+ massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_wrong_mcp_example.yaml,sha256=XTl7FyWG6YhXopDu-rTYfszChW2MnIYm1VHRMb-iewQ,1568
154
+ massgen/configs/tools/custom_tools/grok3_mini_wrong_custom_tool_with_mcp_example.yaml,sha256=OIlL0kmchfYRO2iOc4CKBRXFDn41t7s1hdPtbeLIpBc,1542
155
+ massgen/configs/tools/custom_tools/qwen_api_custom_tool_example.yaml,sha256=wOH48VkZqVFMLYU516NCjbzahH3xsB9bXPl0aGPQ8bM,1143
156
+ massgen/configs/tools/custom_tools/qwen_api_custom_tool_example_no_path.yaml,sha256=YIs5661kFRYaPYju_Zj56c87NQ4fLICZTeO2mSPo9WU,959
157
+ massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_mcp_example.yaml,sha256=JYK_8tPZd-i9YHsiF6eVZSUrvX_DLQc20N8SIJJ5tq0,1667
158
+ massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_wrong_mcp_example.yaml,sha256=88QQN9-QLWhy22ScP9szU2Jq7RPTn2PrqyiIdVdkZlM,1645
159
+ massgen/configs/tools/custom_tools/qwen_api_wrong_custom_tool_with_mcp_example.yaml,sha256=LZEfPLesrNZCzUeYpQWOHBe1FNugaIIOoxfNTHcR68k,1619
160
+ massgen/configs/tools/custom_tools/qwen_local_custom_tool_example.yaml,sha256=qQymbhsCDE4RZsB2TQLUHg5_Cdm1u2Zoh4aW98Xkco0,1083
161
+ massgen/configs/tools/custom_tools/qwen_local_custom_tool_example_no_path.yaml,sha256=GJY9xIV0FXCLHuarCxampvas3pnqOzPTGK3W4g01so0,901
162
+ massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_mcp_example.yaml,sha256=zfvh9RNycLiPAauQmw0_qEAO2qaHBAf-sAvYpKiP87s,1609
163
+ massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_wrong_mcp_example.yaml,sha256=73JeuKxgCHz6nkquj5mANDcTBkW8Cg1zjCVtUGqYdJM,1587
164
+ massgen/configs/tools/custom_tools/qwen_local_wrong_custom_tool_with_mcp_example.yaml,sha256=ruGn-4X-ObShSY3ZqtTSxee6_TmBniJRKF7I_3to4CM,1561
120
165
  massgen/configs/tools/filesystem/cc_gpt5_gemini_filesystem.yaml,sha256=eCnljU999bu5GG7Sl1ANdkojxnjU1vvQltmtcMjpiCM,831
121
- massgen/configs/tools/filesystem/claude_code_context_sharing.yaml,sha256=1hdol8UXvZXTFmPL13FTXdMYh7bLfrgZNRx-FSrMehY,3064
166
+ massgen/configs/tools/filesystem/claude_code_context_sharing.yaml,sha256=MvNtesvnJC2nvq5cXkCzwt7oR2ApeO3xtmrZzy8Jjks,3060
122
167
  massgen/configs/tools/filesystem/claude_code_flash2.5.yaml,sha256=zuyFzh1deUz6yGS602Z2JEuAFN43UVe9dnPSiDFVrq4,1703
123
168
  massgen/configs/tools/filesystem/claude_code_flash2.5_gptoss.yaml,sha256=1RmI6ZCRYboE-2qRWXwQZ83lNSztj10mQPazEtRUmd4,1842
124
169
  massgen/configs/tools/filesystem/claude_code_gpt5nano.yaml,sha256=tkQW7hn5dGOMlrXM4poM9d9Awevc4CLQlGg_QQK-zoo,600
@@ -160,11 +205,11 @@ massgen/configs/tools/mcp/qwen_api_mcp_example.yaml,sha256=OL_VdY9P3215daqOzrn7L
160
205
  massgen/configs/tools/mcp/qwen_api_mcp_test.yaml,sha256=BDY94AvE5OTsJyjapDfbt5Cs6Ylrz7cY8D2nG60wM0w,1053
161
206
  massgen/configs/tools/mcp/qwen_local_mcp_example.yaml,sha256=6fW3E64dL8RCWr5mak8KpHuhXPbtJGogsPOxkLUKse4,1031
162
207
  massgen/configs/tools/mcp/qwen_local_mcp_test.yaml,sha256=2ilQXKCW4wY_pahwhPOdwSBVZP6K9Ng4sQDtXix5sQQ,992
163
- massgen/configs/tools/planning/five_agents_discord_mcp_planning_mode.yaml,sha256=eAFRShCo8azPtcFutlvWZyEFCMLMvAH9mBa8wtqUsoM,5016
164
- massgen/configs/tools/planning/five_agents_filesystem_mcp_planning_mode.yaml,sha256=VRtCsLnc_Vpcxxt6qZ7Gbqnik4RSWJIe9jemaIrK0dE,6302
165
- massgen/configs/tools/planning/five_agents_notion_mcp_planning_mode.yaml,sha256=S7hqdKKb1bs52uPveArmiZ7xr10RbDURW2yFcYek2Fs,5603
166
- massgen/configs/tools/planning/five_agents_twitter_mcp_planning_mode.yaml,sha256=Cx6f3pZf5eFgK3NR2j_yOhJtaPQ2yrAWI_-FCkQB-s0,6135
167
- massgen/configs/tools/planning/gpt5_mini_case_study_mcp_planning_mode.yaml,sha256=D231EEe_jJrz1W_sX-ywEiqTLkfPxTwzXG4qthy_0d8,3086
208
+ massgen/configs/tools/planning/five_agents_discord_mcp_planning_mode.yaml,sha256=lctHFq_ZqdrssBHNQh5HPcpmJnmh9ti1O7yLViNH0K8,4181
209
+ massgen/configs/tools/planning/five_agents_filesystem_mcp_planning_mode.yaml,sha256=ylXOcRZTvqUFQ5Q2RzpRMBo1vlybfzBAYp3S7H0rjn4,6204
210
+ massgen/configs/tools/planning/five_agents_notion_mcp_planning_mode.yaml,sha256=XYRoZeu_VGOeOA1OosOf2IWm9SwilHzySh7cxKLkLyU,5657
211
+ massgen/configs/tools/planning/five_agents_twitter_mcp_planning_mode.yaml,sha256=gTraQcwW-To6NlthWnU_RpYDtKuWKqb03Z4UjFfVpSI,6188
212
+ massgen/configs/tools/planning/gpt5_mini_case_study_mcp_planning_mode.yaml,sha256=xK-y-_QUpTwp5fOuTMtAFZSXb2MN8jLmjln3eBd4rnM,3083
168
213
  massgen/configs/tools/web-search/claude_streamable_http_test.yaml,sha256=B7u_-fe70wBG2cXeYIwcg-Z3DORmSNpjdMFj4bFEeJg,2232
169
214
  massgen/configs/tools/web-search/gemini_streamable_http_test.yaml,sha256=1xtJwG9OEfkX_O5n299kI9W5_WhfnDSvANd3YizYFcU,2211
170
215
  massgen/configs/tools/web-search/gpt5_mini_streamable_http_test.yaml,sha256=3x1McsBaKPGrBGqexu2PcLKcM13yoOTLg3yw_R7F2K4,2199
@@ -172,6 +217,7 @@ massgen/configs/tools/web-search/gpt_oss_streamable_http_test.yaml,sha256=H1p2Nm
172
217
  massgen/configs/tools/web-search/grok3_mini_streamable_http_test.yaml,sha256=uO-xlNTu6heDsIGNhGX3LKv1Vtx6vHxtuZZgXLI58Fk,2197
173
218
  massgen/configs/tools/web-search/qwen_api_streamable_http_test.yaml,sha256=-7eBgZJkJJyymVwtNBJRjl2brxfJX6xB3nwTOEh4urI,2262
174
219
  massgen/configs/tools/web-search/qwen_local_streamable_http_test.yaml,sha256=nvxUK_J7pDI9Hoa8t8TGdcVCosnjdIegnbgp8os0YWo,2201
220
+ massgen/configs/voting/gemini_gpt_voting_sensitivity.yaml,sha256=Xp84UmJKx_fqNej5FLXJNohBgtG3j_QBswHU_Xguzm4,2389
175
221
  massgen/docker/README.md,sha256=a1c5Ow5pH7DShmYvWaSVvtcqqJ8CPyeMEoWpRTU832Q,12596
176
222
  massgen/filesystem_manager/__init__.py,sha256=4rWTzNHcx_ISTiph9iICjteyTS2R1hl1yELpsoIbUdQ,590
177
223
  massgen/filesystem_manager/_base.py,sha256=4pR1rqPvqtNo9OsdaUM3j1TebOnQm27olNwbvijRAOA,151
@@ -182,12 +228,13 @@ massgen/filesystem_manager/_filesystem_manager.py,sha256=DFoPVf0mC0Pq8pmMhMQQT_g
182
228
  massgen/filesystem_manager/_path_permission_manager.py,sha256=pmOTMPda4kTohqAXQaxtqfZPZQ79YzLYaxI89vXlBTA,56326
183
229
  massgen/filesystem_manager/_workspace_tools_server.py,sha256=WAeX5uHdYTqfOI7-Af_pHZK_ZGuODBc-qNi2sAegkCc,74102
184
230
  massgen/formatter/__init__.py,sha256=t3qDPvytyzIBkqYW9CCqTflikQ8ynw_AlF0PFgnH9Yc,370
185
- massgen/formatter/_chat_completions_formatter.py,sha256=JCkudYMBIUqI4Zy2-Rp5HzIFd7LgjIvFKfQHGTt2sA8,10750
186
- massgen/formatter/_claude_formatter.py,sha256=wDlpZaIvK8AVRHQ9mYZttAL4VNpEgGF0yOy7xqqj3v0,9413
231
+ massgen/formatter/_chat_completions_formatter.py,sha256=3ezx30SDf4XHQac0qRWfgobCs7iS7vlsKpSrgymmq-c,16034
232
+ massgen/formatter/_claude_formatter.py,sha256=J3fzg17dOJPdK4oEDCkkOsnx92J-7EOye3gpXoNqKUA,15435
187
233
  massgen/formatter/_formatter_base.py,sha256=aoAzCQwDQC8vCOS_0lgFzTWue2nENxXbGUMw76uetqw,4790
188
- massgen/formatter/_response_formatter.py,sha256=1FWc9WrjQeOzu_hqtXdlW69TdqwWWBpKODaLIQihGqY,9982
234
+ massgen/formatter/_gemini_formatter.py,sha256=kI0P7v023pYlxKvHJl5TDY4YYgwgcjQTMUtR16Ttpks,16866
235
+ massgen/formatter/_response_formatter.py,sha256=DKGZwF_QVnaSXE6Bq8iw-jdcrLALQn_AM74MYCnZFtA,14245
189
236
  massgen/frontend/__init__.py,sha256=mF_-mNFccS9V1SwqKD7_FB2mvzI2Agzuk3orxtxsWDc,658
190
- massgen/frontend/coordination_ui.py,sha256=Ni7ubJ9coFdYHVoxDZvYFfo-fWlThytC2Gcs03frdxk,54753
237
+ massgen/frontend/coordination_ui.py,sha256=EuuxHeM5lqX-wolXrkA4RLQ-2Xw2jCDQ8CWE9x_nusQ,54879
191
238
  massgen/frontend/displays/__init__.py,sha256=QxEXAGDTBbFenYafmXLgSCulFcbaUr7ls5atXIkX3m8,536
192
239
  massgen/frontend/displays/base_display.py,sha256=X2SadlXOkfWf1T5MtijKaMxBUnHR7n7TFZ3gK4_yeFI,4810
193
240
  massgen/frontend/displays/create_coordination_table.py,sha256=CyRFVo58GJIw3EzXW3-eIVxe3dsmjD4BE6ouvMxOois,77862
@@ -209,11 +256,12 @@ massgen/mcp_tools/docs/config_validator.md,sha256=E22jptaS5FXWiERmq_k9AgPMCRUVVq
209
256
  massgen/mcp_tools/docs/exceptions.md,sha256=8pNfzHHhQ6t_Ife9Hh3dsS2-E3_JlGvzvBcJnD4bqKY,34229
210
257
  massgen/mcp_tools/docs/security.md,sha256=qCB3iVk-WH7Mppe0Ra9-w2_Rip0jrNiDM0OtCHXTcFQ,26184
211
258
  massgen/stream_chunk/__init__.py,sha256=fc8Jn-Ow2ZKFWJR72DRA6r65_CtViM9NLvWGT-TrhU4,898
212
- massgen/stream_chunk/base.py,sha256=RLiB00raDYwfZA5pmRQsDlMYoXip0LF-REVoXjbyA94,2738
259
+ massgen/stream_chunk/base.py,sha256=NubSk62R_ngr13IBTqz6HACnfh-LAsmkgzZ93nkj-fM,2810
213
260
  massgen/stream_chunk/multimodal.py,sha256=ojaO-1EFnhA0H94YczxmkP6f0XV3lvTlb62Lc-JgltI,7916
214
261
  massgen/stream_chunk/text.py,sha256=8jk6WkQIqQjiQZjHFcWkeIvDeEsUtK9gIun2Fbq0CaY,5954
215
262
  massgen/tests/__init__.py,sha256=db7BtsWb8Rhj9KPj1YK1mUrNzz_Bv9U7x4fpQj6vMPI,187
216
- massgen/tests/mcp_test_server.py,sha256=B2gVFYCQKuLzJGTjY6pnvZKyYbvqCdSNezwGXdyzRwc,5148
263
+ massgen/tests/custom_tools_example.py,sha256=-f6_iGfEipznkKVKdzZwgGyQXw9JzOm9Lwc0n9eiQUg,11734
264
+ massgen/tests/mcp_test_server.py,sha256=hx1dKMxFufzynG6sCd2117ma0ywPy9hiVjkUsAxtsP8,5660
217
265
  massgen/tests/multi_turn_conversation_design.md,sha256=q9vMFNZ-LOTqZdI8oOWAQjPIY773s_mOXptq582Pk6E,7501
218
266
  massgen/tests/multiturn_llm_input_analysis.md,sha256=Xw8PX0oAIbF_zjlRXCA62EpX1xAOGUq9brYl3UkyAR0,6997
219
267
  massgen/tests/test_azure_openai_backend.py,sha256=a9JFdCnDDkG_PKjLxN8QqBwyzP_aNNlP543iST2pyPw,6663
@@ -227,24 +275,52 @@ massgen/tests/test_claude_code_context_sharing.py,sha256=VhEBv2rUmT8cU2hMb9Qn6z-
227
275
  massgen/tests/test_claude_code_orchestrator.py,sha256=1bFLHQSgPqw2ecPjoZpsSg5lw8HEc8GXNrmyrrq5Xoo,5822
228
276
  massgen/tests/test_cli_backends.py,sha256=6KPYnNgwGYRCGIXJTNWBCBHK1w8ylrBWFqt_HBWlelk,5918
229
277
  massgen/tests/test_code_execution.py,sha256=aqR3ceOo99a4uMuqUBRkvkdDif_mf3FWWh8r70wPSYI,22759
278
+ massgen/tests/test_config_builder.py,sha256=OcDfeVcKp_7zUruujNwKkpf0pwQ5f5ZzrgnHQYiEA2g,17781
279
+ massgen/tests/test_custom_tools.py,sha256=zUOjlZdT1eC7jgx28Z3TfzUTqFvAmRumK2Uv-lq1f3E,12905
230
280
  massgen/tests/test_external_agent_backend.py,sha256=1ImeUo0tQIdaG7ASn1X-rkuHBuAUrmk3d4l8U4LaJHI,3948
231
281
  massgen/tests/test_final_presentation_fallback.py,sha256=aMG9-6TjWseGPvY_zHOiKpdi5I4jHTMUEURaIu-5oNw,8985
232
282
  massgen/tests/test_gemini_planning_mode.py,sha256=37Sm_2scRdmc2gNxBB81LLn6N758gJVZn1bFtwENasU,14019
233
283
  massgen/tests/test_grok_backend.py,sha256=Dw7fFcyXPOL8x0N4aCRHjTAuvxmtyLp6Tj02c_6avnI,4818
234
284
  massgen/tests/test_http_mcp_server.py,sha256=GjYOIUTk5skBWgFLwZz9UyRJPjjHCrcsWnlslOUQ5M4,1042
235
285
  massgen/tests/test_integration_simple.py,sha256=Dps0m3Nfjqphi_1cLTultnfqxJTonL3aZxgq7kkewZ8,6147
286
+ massgen/tests/test_intelligent_planning_mode.py,sha256=T2KjezqA6_1Ixj8uIEpXb9yuN0kG8tINfkl2C7KyWu8,24685
236
287
  massgen/tests/test_mcp_blocking.py,sha256=rMvkozLGbEScYj01p8gfQmX2gssGriCIVDVo1e2bplU,4606
237
288
  massgen/tests/test_message_context_building.py,sha256=8AXcVDtv0R8uI-1PVLwYVFSWP-t3KeIDvy7vifrLPyU,10563
238
289
  massgen/tests/test_orchestrator_final_presentation.py,sha256=Yt0-IACu0PGe4IpoGW7mpBDNdyFW_6W5Q1Hzry3gAys,1238
239
290
  massgen/tests/test_path_permission_manager.py,sha256=DjOQvhUE6Tg4UGGJzl8AwnFnlvQgJf2WaUVvebkK8UA,88275
240
291
  massgen/tests/test_rich_terminal_display.py,sha256=r-SfoWf8T1P-cwZTnbVp3AYuxr-98h0K7XqI8Y5tcR4,12157
241
292
  massgen/tests/test_timeout.py,sha256=35Lecz6WHPZXN_B1ru-XYQQhRr-Npx_LoqemsTQk7sE,5082
293
+ massgen/tests/test_tools.py,sha256=GnJNNB-cZj142txDwJKzN0zUKd0wb_p7lRWNJnB0qkc,3594
242
294
  massgen/tests/test_v3_3agents.py,sha256=YARcuU3bc61BJhgMlojJ-AaHyIC__C31KzPf5W9fck0,3808
243
295
  massgen/tests/test_v3_simple.py,sha256=MCJkqnCldRmPhZF0IMvWyjbO9Xjz-_uv1rZqtW2kniw,6544
244
296
  massgen/tests/test_v3_three_agents.py,sha256=t76yek3DRFJpgs4hiuc9BT5VKyU_RwgHcthZxjM8otM,9266
245
297
  massgen/tests/test_v3_two_agents.py,sha256=G3WJuMdCjMdp0WItur48IGJ69B4HBs5RhpDjYJayzHo,5768
246
298
  massgen/token_manager/__init__.py,sha256=SxFK64M3S69E51d1M37pq38O39mIZp-9TMxAspwR3wY,143
247
- massgen/token_manager/token_manager.py,sha256=jdxjmwKqfRzyz0O9logVlrZhFcSLJP7kM8RjpU6ndWw,15729
299
+ massgen/token_manager/token_manager.py,sha256=rp1DY6KYLK9QSaAZh6IBlAwpTgwSr7PRWxd-9Ifh4bs,16586
300
+ massgen/tool/README.md,sha256=wauBHnWMUIQiGendrYUeUFW7LesRznGpJx9TR5qJpEU,24365
301
+ massgen/tool/__init__.py,sha256=mA7JLNGnxg3khwtDIDndBYk6fp3ea-ksJoQKUXvIEak,994
302
+ massgen/tool/_async_helpers.py,sha256=SyfWZ_fLLq2knwM5j4TaYVV1cTWElxWRSzH1FkapcL8,2411
303
+ massgen/tool/_exceptions.py,sha256=HGFXB1-cpj1bLCRtiVAP8BeiyBdzVWWsNGekQCvergA,1188
304
+ massgen/tool/_manager.py,sha256=7TzzTf9DCqX3y4QsIN6o8Z4HR8EfoVb93T70QGO8aok,23266
305
+ massgen/tool/_registered_tool.py,sha256=3hxyrfWzxNYGfhXOCcOZWr9vbIPmAc1RLC9bSocG2W0,3013
306
+ massgen/tool/_result.py,sha256=sDzLu38X0TCWsHq8rfZZhYB8TH3tcyPUv-sFvbDu3jc,1619
307
+ massgen/tool/_basic/__init__.py,sha256=oTNQVOeoSE-7ZQ2IslWOy0_ou0IbUAvjPga8HrHTgqg,119
308
+ massgen/tool/_basic/_two_num_tool.py,sha256=HzBBjZVfM1P01iIgLJhthpBcSevShId5NZIdmtFBE5A,498
309
+ massgen/tool/_code_executors/__init__.py,sha256=fx__VbgCtWnnPh559PVMFYYBd880fqF2wPrcVCDbQt0,211
310
+ massgen/tool/_code_executors/_python_executor.py,sha256=G7n9qknm5A3mxlVq5NwGuNeq39A6GuLxP0VcWB0A0Rg,2458
311
+ massgen/tool/_code_executors/_shell_executor.py,sha256=SIV8-GyrlKNOqDB4SHYlK46ff82_eAV1CgxvChnG4FA,1872
312
+ massgen/tool/_file_handlers/__init__.py,sha256=GoQ5hNFkU6UyGux_NfMhvYqJIwMWV0FIYDT0hO6FV-Q,232
313
+ massgen/tool/_file_handlers/_file_operations.py,sha256=r-ykRNVSTUv6HSWr86EsjGkW5r_LTJGcYo0VchByA0A,6915
314
+ massgen/tool/_self_evolution/_github_issue_analyzer.py,sha256=jN3LmeXsgGD2qQD6xASUi-erdyU6cot-C496095l5IQ,12470
315
+ massgen/tool/docs/builtin_tools.md,sha256=pZHL0e6gGqwb91M5nghhlhbAWnV2S7w4lrdbEdACCF4,16818
316
+ massgen/tool/docs/exceptions.md,sha256=t1DLJTf6ZJW864OgvZLWAYf4Ws0Ms84l5AZVTjDw4DI,23468
317
+ massgen/tool/docs/execution_results.md,sha256=scpwavPHJiY6SR0s6jf0U4MMMKkkJr0yVExgRBJ4pog,18929
318
+ massgen/tool/docs/manager.md,sha256=dbBkiqnkPIrbrUZjnH78MnCDX-UJIyH6OI1szLWOupM,27928
319
+ massgen/tool/docs/workflow_toolkits.md,sha256=VV4NslGYj0b2bPvCpu6CsaO2PY2EIA2l-tl0wg4MPAQ,13296
320
+ massgen/tool/workflow_toolkits/__init__.py,sha256=A1Ch7Fgt7d7oBKbfhhmSfw1f1ks5q6yZufYxjsy6MU4,1413
321
+ massgen/tool/workflow_toolkits/base.py,sha256=VcT6JOhtusYTwpc6FOdgG2Z-99ImsMNKudM-AMPsOVM,1301
322
+ massgen/tool/workflow_toolkits/new_answer.py,sha256=x2KfMs0rM9_sJmIVYQf8Acq_NNXMIIFrmZBRFpP6y9I,4482
323
+ massgen/tool/workflow_toolkits/vote.py,sha256=u-Tqr45OjkoaNajriLUYeQZnM69Am0M8HR-_yrDpasA,6106
248
324
  massgen/v1/README.md,sha256=37ZEbNR0O5IcdqQXkqtvNCpmVX1Z_dO4HGcKreaP-0E,13631
249
325
  massgen/v1/__init__.py,sha256=hZUuhjtGlLJ-QW4Ty2V4IMlaoUB5oP0TSl0XeuCoWqU,2733
250
326
  massgen/v1/agent.py,sha256=toEN1JM1pop4ZqZj2zqCCJJtxHtMUPjTQgEI4hvnh8s,25341
@@ -265,9 +341,9 @@ massgen/v1/examples/fast-4o-mini-config.yaml,sha256=t7zmN8sWQrrWivjaBB9w_WHFDnU-
265
341
  massgen/v1/examples/fast_config.yaml,sha256=BDBCpSYJPzTZi9vAEGsCZ3lt3JV25RN-4Nf_17JAhUU,846
266
342
  massgen/v1/examples/production.yaml,sha256=hrNqzOqlQG1sL-5U8ZlA8QpCwGSoiCtqMu7Mi2gOd9s,2002
267
343
  massgen/v1/examples/single_agent.yaml,sha256=h8ysGIwPjvgnpRxTcBqw5nBz5D2MTXI_Ygdn4D9RdIA,1256
268
- massgen-0.1.0a3.dist-info/licenses/LICENSE,sha256=_r2TwhSv0GcpGeIKfwbz9z2qzOI62FHCfgSfnZ1z2fc,11386
269
- massgen-0.1.0a3.dist-info/METADATA,sha256=kvSVW9g9NhVwuVaPZx0WuDqRBypOEvVz8EQlo5SZC3w,60212
270
- massgen-0.1.0a3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
271
- massgen-0.1.0a3.dist-info/entry_points.txt,sha256=On6OV7swWO0StsAXeOri3MzmuxhO9C-PUvKW-5pJ6gA,49
272
- massgen-0.1.0a3.dist-info/top_level.txt,sha256=jm8ZxEGdkjsh8aPWXvCpnexL_S2ZRkFeT9vl6vIm_3I,8
273
- massgen-0.1.0a3.dist-info/RECORD,,
344
+ massgen-0.1.2.dist-info/licenses/LICENSE,sha256=_r2TwhSv0GcpGeIKfwbz9z2qzOI62FHCfgSfnZ1z2fc,11386
345
+ massgen-0.1.2.dist-info/METADATA,sha256=21kJXptZUVT4EHnJTYw3Elo5S91E76r5l9vG_zBTkyw,59674
346
+ massgen-0.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
347
+ massgen-0.1.2.dist-info/entry_points.txt,sha256=On6OV7swWO0StsAXeOri3MzmuxhO9C-PUvKW-5pJ6gA,49
348
+ massgen-0.1.2.dist-info/top_level.txt,sha256=jm8ZxEGdkjsh8aPWXvCpnexL_S2ZRkFeT9vl6vIm_3I,8
349
+ massgen-0.1.2.dist-info/RECORD,,