massgen 0.0.3__py3-none-any.whl → 0.1.0__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 (268) hide show
  1. massgen/__init__.py +142 -8
  2. massgen/adapters/__init__.py +29 -0
  3. massgen/adapters/ag2_adapter.py +483 -0
  4. massgen/adapters/base.py +183 -0
  5. massgen/adapters/tests/__init__.py +0 -0
  6. massgen/adapters/tests/test_ag2_adapter.py +439 -0
  7. massgen/adapters/tests/test_agent_adapter.py +128 -0
  8. massgen/adapters/utils/__init__.py +2 -0
  9. massgen/adapters/utils/ag2_utils.py +236 -0
  10. massgen/adapters/utils/tests/__init__.py +0 -0
  11. massgen/adapters/utils/tests/test_ag2_utils.py +138 -0
  12. massgen/agent_config.py +329 -55
  13. massgen/api_params_handler/__init__.py +10 -0
  14. massgen/api_params_handler/_api_params_handler_base.py +99 -0
  15. massgen/api_params_handler/_chat_completions_api_params_handler.py +176 -0
  16. massgen/api_params_handler/_claude_api_params_handler.py +113 -0
  17. massgen/api_params_handler/_response_api_params_handler.py +130 -0
  18. massgen/backend/__init__.py +39 -4
  19. massgen/backend/azure_openai.py +385 -0
  20. massgen/backend/base.py +341 -69
  21. massgen/backend/base_with_mcp.py +1102 -0
  22. massgen/backend/capabilities.py +386 -0
  23. massgen/backend/chat_completions.py +577 -130
  24. massgen/backend/claude.py +1033 -537
  25. massgen/backend/claude_code.py +1203 -0
  26. massgen/backend/cli_base.py +209 -0
  27. massgen/backend/docs/BACKEND_ARCHITECTURE.md +126 -0
  28. massgen/backend/{CLAUDE_API_RESEARCH.md → docs/CLAUDE_API_RESEARCH.md} +18 -18
  29. massgen/backend/{GEMINI_API_DOCUMENTATION.md → docs/GEMINI_API_DOCUMENTATION.md} +9 -9
  30. massgen/backend/docs/Gemini MCP Integration Analysis.md +1050 -0
  31. massgen/backend/docs/MCP_IMPLEMENTATION_CLAUDE_BACKEND.md +177 -0
  32. massgen/backend/docs/MCP_INTEGRATION_RESPONSE_BACKEND.md +352 -0
  33. massgen/backend/docs/OPENAI_GPT5_MODELS.md +211 -0
  34. massgen/backend/{OPENAI_RESPONSES_API_FORMAT.md → docs/OPENAI_RESPONSE_API_TOOL_CALLS.md} +3 -3
  35. massgen/backend/docs/OPENAI_response_streaming.md +20654 -0
  36. massgen/backend/docs/inference_backend.md +257 -0
  37. massgen/backend/docs/permissions_and_context_files.md +1085 -0
  38. massgen/backend/external.py +126 -0
  39. massgen/backend/gemini.py +1850 -241
  40. massgen/backend/grok.py +40 -156
  41. massgen/backend/inference.py +156 -0
  42. massgen/backend/lmstudio.py +171 -0
  43. massgen/backend/response.py +1095 -322
  44. massgen/chat_agent.py +131 -113
  45. massgen/cli.py +1560 -275
  46. massgen/config_builder.py +2396 -0
  47. massgen/configs/BACKEND_CONFIGURATION.md +458 -0
  48. massgen/configs/README.md +559 -216
  49. massgen/configs/ag2/ag2_case_study.yaml +27 -0
  50. massgen/configs/ag2/ag2_coder.yaml +34 -0
  51. massgen/configs/ag2/ag2_coder_case_study.yaml +36 -0
  52. massgen/configs/ag2/ag2_gemini.yaml +27 -0
  53. massgen/configs/ag2/ag2_groupchat.yaml +108 -0
  54. massgen/configs/ag2/ag2_groupchat_gpt.yaml +118 -0
  55. massgen/configs/ag2/ag2_single_agent.yaml +21 -0
  56. massgen/configs/basic/multi/fast_timeout_example.yaml +37 -0
  57. massgen/configs/basic/multi/gemini_4o_claude.yaml +31 -0
  58. massgen/configs/basic/multi/gemini_gpt5nano_claude.yaml +36 -0
  59. massgen/configs/{gemini_4o_claude.yaml → basic/multi/geminicode_4o_claude.yaml} +3 -3
  60. massgen/configs/basic/multi/geminicode_gpt5nano_claude.yaml +36 -0
  61. massgen/configs/basic/multi/glm_gemini_claude.yaml +25 -0
  62. massgen/configs/basic/multi/gpt4o_audio_generation.yaml +30 -0
  63. massgen/configs/basic/multi/gpt4o_image_generation.yaml +31 -0
  64. massgen/configs/basic/multi/gpt5nano_glm_qwen.yaml +26 -0
  65. massgen/configs/basic/multi/gpt5nano_image_understanding.yaml +26 -0
  66. massgen/configs/{three_agents_default.yaml → basic/multi/three_agents_default.yaml} +8 -4
  67. massgen/configs/basic/multi/three_agents_opensource.yaml +27 -0
  68. massgen/configs/basic/multi/three_agents_vllm.yaml +20 -0
  69. massgen/configs/basic/multi/two_agents_gemini.yaml +19 -0
  70. massgen/configs/{two_agents.yaml → basic/multi/two_agents_gpt5.yaml} +14 -6
  71. massgen/configs/basic/multi/two_agents_opensource_lmstudio.yaml +31 -0
  72. massgen/configs/basic/multi/two_qwen_vllm_sglang.yaml +28 -0
  73. massgen/configs/{single_agent.yaml → basic/single/single_agent.yaml} +1 -1
  74. massgen/configs/{single_flash2.5.yaml → basic/single/single_flash2.5.yaml} +1 -2
  75. massgen/configs/basic/single/single_gemini2.5pro.yaml +16 -0
  76. massgen/configs/basic/single/single_gpt4o_audio_generation.yaml +22 -0
  77. massgen/configs/basic/single/single_gpt4o_image_generation.yaml +22 -0
  78. massgen/configs/basic/single/single_gpt4o_video_generation.yaml +24 -0
  79. massgen/configs/basic/single/single_gpt5nano.yaml +20 -0
  80. massgen/configs/basic/single/single_gpt5nano_file_search.yaml +18 -0
  81. massgen/configs/basic/single/single_gpt5nano_image_understanding.yaml +17 -0
  82. massgen/configs/basic/single/single_gptoss120b.yaml +15 -0
  83. massgen/configs/basic/single/single_openrouter_audio_understanding.yaml +15 -0
  84. massgen/configs/basic/single/single_qwen_video_understanding.yaml +15 -0
  85. massgen/configs/debug/code_execution/command_filtering_blacklist.yaml +29 -0
  86. massgen/configs/debug/code_execution/command_filtering_whitelist.yaml +28 -0
  87. massgen/configs/debug/code_execution/docker_verification.yaml +29 -0
  88. massgen/configs/debug/skip_coordination_test.yaml +27 -0
  89. massgen/configs/debug/test_sdk_migration.yaml +17 -0
  90. massgen/configs/docs/DISCORD_MCP_SETUP.md +208 -0
  91. massgen/configs/docs/TWITTER_MCP_ENESCINAR_SETUP.md +82 -0
  92. massgen/configs/providers/azure/azure_openai_multi.yaml +21 -0
  93. massgen/configs/providers/azure/azure_openai_single.yaml +19 -0
  94. massgen/configs/providers/claude/claude.yaml +14 -0
  95. massgen/configs/providers/gemini/gemini_gpt5nano.yaml +28 -0
  96. massgen/configs/providers/local/lmstudio.yaml +11 -0
  97. massgen/configs/providers/openai/gpt5.yaml +46 -0
  98. massgen/configs/providers/openai/gpt5_nano.yaml +46 -0
  99. massgen/configs/providers/others/grok_single_agent.yaml +19 -0
  100. massgen/configs/providers/others/zai_coding_team.yaml +108 -0
  101. massgen/configs/providers/others/zai_glm45.yaml +12 -0
  102. massgen/configs/{creative_team.yaml → teams/creative/creative_team.yaml} +16 -6
  103. massgen/configs/{travel_planning.yaml → teams/creative/travel_planning.yaml} +16 -6
  104. massgen/configs/{news_analysis.yaml → teams/research/news_analysis.yaml} +16 -6
  105. massgen/configs/{research_team.yaml → teams/research/research_team.yaml} +15 -7
  106. massgen/configs/{technical_analysis.yaml → teams/research/technical_analysis.yaml} +16 -6
  107. massgen/configs/tools/code-execution/basic_command_execution.yaml +25 -0
  108. massgen/configs/tools/code-execution/code_execution_use_case_simple.yaml +41 -0
  109. massgen/configs/tools/code-execution/docker_claude_code.yaml +32 -0
  110. massgen/configs/tools/code-execution/docker_multi_agent.yaml +32 -0
  111. massgen/configs/tools/code-execution/docker_simple.yaml +29 -0
  112. massgen/configs/tools/code-execution/docker_with_resource_limits.yaml +32 -0
  113. massgen/configs/tools/code-execution/multi_agent_playwright_automation.yaml +57 -0
  114. massgen/configs/tools/filesystem/cc_gpt5_gemini_filesystem.yaml +34 -0
  115. massgen/configs/tools/filesystem/claude_code_context_sharing.yaml +68 -0
  116. massgen/configs/tools/filesystem/claude_code_flash2.5.yaml +43 -0
  117. massgen/configs/tools/filesystem/claude_code_flash2.5_gptoss.yaml +49 -0
  118. massgen/configs/tools/filesystem/claude_code_gpt5nano.yaml +31 -0
  119. massgen/configs/tools/filesystem/claude_code_single.yaml +40 -0
  120. massgen/configs/tools/filesystem/fs_permissions_test.yaml +87 -0
  121. massgen/configs/tools/filesystem/gemini_gemini_workspace_cleanup.yaml +54 -0
  122. massgen/configs/tools/filesystem/gemini_gpt5_filesystem_casestudy.yaml +30 -0
  123. massgen/configs/tools/filesystem/gemini_gpt5nano_file_context_path.yaml +43 -0
  124. massgen/configs/tools/filesystem/gemini_gpt5nano_protected_paths.yaml +45 -0
  125. massgen/configs/tools/filesystem/gpt5mini_cc_fs_context_path.yaml +31 -0
  126. massgen/configs/tools/filesystem/grok4_gpt5_gemini_filesystem.yaml +32 -0
  127. massgen/configs/tools/filesystem/multiturn/grok4_gpt5_claude_code_filesystem_multiturn.yaml +58 -0
  128. massgen/configs/tools/filesystem/multiturn/grok4_gpt5_gemini_filesystem_multiturn.yaml +58 -0
  129. massgen/configs/tools/filesystem/multiturn/two_claude_code_filesystem_multiturn.yaml +47 -0
  130. massgen/configs/tools/filesystem/multiturn/two_gemini_flash_filesystem_multiturn.yaml +48 -0
  131. massgen/configs/tools/mcp/claude_code_discord_mcp_example.yaml +27 -0
  132. massgen/configs/tools/mcp/claude_code_simple_mcp.yaml +35 -0
  133. massgen/configs/tools/mcp/claude_code_twitter_mcp_example.yaml +32 -0
  134. massgen/configs/tools/mcp/claude_mcp_example.yaml +24 -0
  135. massgen/configs/tools/mcp/claude_mcp_test.yaml +27 -0
  136. massgen/configs/tools/mcp/five_agents_travel_mcp_test.yaml +157 -0
  137. massgen/configs/tools/mcp/five_agents_weather_mcp_test.yaml +103 -0
  138. massgen/configs/tools/mcp/gemini_mcp_example.yaml +24 -0
  139. massgen/configs/tools/mcp/gemini_mcp_filesystem_test.yaml +23 -0
  140. massgen/configs/tools/mcp/gemini_mcp_filesystem_test_sharing.yaml +23 -0
  141. massgen/configs/tools/mcp/gemini_mcp_filesystem_test_single_agent.yaml +17 -0
  142. massgen/configs/tools/mcp/gemini_mcp_filesystem_test_with_claude_code.yaml +24 -0
  143. massgen/configs/tools/mcp/gemini_mcp_test.yaml +27 -0
  144. massgen/configs/tools/mcp/gemini_notion_mcp.yaml +52 -0
  145. massgen/configs/tools/mcp/gpt5_nano_mcp_example.yaml +24 -0
  146. massgen/configs/tools/mcp/gpt5_nano_mcp_test.yaml +27 -0
  147. massgen/configs/tools/mcp/gpt5mini_claude_code_discord_mcp_example.yaml +38 -0
  148. massgen/configs/tools/mcp/gpt_oss_mcp_example.yaml +25 -0
  149. massgen/configs/tools/mcp/gpt_oss_mcp_test.yaml +28 -0
  150. massgen/configs/tools/mcp/grok3_mini_mcp_example.yaml +24 -0
  151. massgen/configs/tools/mcp/grok3_mini_mcp_test.yaml +27 -0
  152. massgen/configs/tools/mcp/multimcp_gemini.yaml +111 -0
  153. massgen/configs/tools/mcp/qwen_api_mcp_example.yaml +25 -0
  154. massgen/configs/tools/mcp/qwen_api_mcp_test.yaml +28 -0
  155. massgen/configs/tools/mcp/qwen_local_mcp_example.yaml +24 -0
  156. massgen/configs/tools/mcp/qwen_local_mcp_test.yaml +27 -0
  157. massgen/configs/tools/planning/five_agents_discord_mcp_planning_mode.yaml +140 -0
  158. massgen/configs/tools/planning/five_agents_filesystem_mcp_planning_mode.yaml +151 -0
  159. massgen/configs/tools/planning/five_agents_notion_mcp_planning_mode.yaml +151 -0
  160. massgen/configs/tools/planning/five_agents_twitter_mcp_planning_mode.yaml +155 -0
  161. massgen/configs/tools/planning/gpt5_mini_case_study_mcp_planning_mode.yaml +73 -0
  162. massgen/configs/tools/web-search/claude_streamable_http_test.yaml +43 -0
  163. massgen/configs/tools/web-search/gemini_streamable_http_test.yaml +43 -0
  164. massgen/configs/tools/web-search/gpt5_mini_streamable_http_test.yaml +43 -0
  165. massgen/configs/tools/web-search/gpt_oss_streamable_http_test.yaml +44 -0
  166. massgen/configs/tools/web-search/grok3_mini_streamable_http_test.yaml +43 -0
  167. massgen/configs/tools/web-search/qwen_api_streamable_http_test.yaml +44 -0
  168. massgen/configs/tools/web-search/qwen_local_streamable_http_test.yaml +43 -0
  169. massgen/coordination_tracker.py +708 -0
  170. massgen/docker/README.md +462 -0
  171. massgen/filesystem_manager/__init__.py +21 -0
  172. massgen/filesystem_manager/_base.py +9 -0
  173. massgen/filesystem_manager/_code_execution_server.py +545 -0
  174. massgen/filesystem_manager/_docker_manager.py +477 -0
  175. massgen/filesystem_manager/_file_operation_tracker.py +248 -0
  176. massgen/filesystem_manager/_filesystem_manager.py +813 -0
  177. massgen/filesystem_manager/_path_permission_manager.py +1261 -0
  178. massgen/filesystem_manager/_workspace_tools_server.py +1815 -0
  179. massgen/formatter/__init__.py +10 -0
  180. massgen/formatter/_chat_completions_formatter.py +284 -0
  181. massgen/formatter/_claude_formatter.py +235 -0
  182. massgen/formatter/_formatter_base.py +156 -0
  183. massgen/formatter/_response_formatter.py +263 -0
  184. massgen/frontend/__init__.py +1 -2
  185. massgen/frontend/coordination_ui.py +471 -286
  186. massgen/frontend/displays/base_display.py +56 -11
  187. massgen/frontend/displays/create_coordination_table.py +1956 -0
  188. massgen/frontend/displays/rich_terminal_display.py +1259 -619
  189. massgen/frontend/displays/simple_display.py +9 -4
  190. massgen/frontend/displays/terminal_display.py +27 -68
  191. massgen/logger_config.py +681 -0
  192. massgen/mcp_tools/README.md +232 -0
  193. massgen/mcp_tools/__init__.py +105 -0
  194. massgen/mcp_tools/backend_utils.py +1035 -0
  195. massgen/mcp_tools/circuit_breaker.py +195 -0
  196. massgen/mcp_tools/client.py +894 -0
  197. massgen/mcp_tools/config_validator.py +138 -0
  198. massgen/mcp_tools/docs/circuit_breaker.md +646 -0
  199. massgen/mcp_tools/docs/client.md +950 -0
  200. massgen/mcp_tools/docs/config_validator.md +478 -0
  201. massgen/mcp_tools/docs/exceptions.md +1165 -0
  202. massgen/mcp_tools/docs/security.md +854 -0
  203. massgen/mcp_tools/exceptions.py +338 -0
  204. massgen/mcp_tools/hooks.py +212 -0
  205. massgen/mcp_tools/security.py +780 -0
  206. massgen/message_templates.py +342 -64
  207. massgen/orchestrator.py +1515 -241
  208. massgen/stream_chunk/__init__.py +35 -0
  209. massgen/stream_chunk/base.py +92 -0
  210. massgen/stream_chunk/multimodal.py +237 -0
  211. massgen/stream_chunk/text.py +162 -0
  212. massgen/tests/mcp_test_server.py +150 -0
  213. massgen/tests/multi_turn_conversation_design.md +0 -8
  214. massgen/tests/test_azure_openai_backend.py +156 -0
  215. massgen/tests/test_backend_capabilities.py +262 -0
  216. massgen/tests/test_backend_event_loop_all.py +179 -0
  217. massgen/tests/test_chat_completions_refactor.py +142 -0
  218. massgen/tests/test_claude_backend.py +15 -28
  219. massgen/tests/test_claude_code.py +268 -0
  220. massgen/tests/test_claude_code_context_sharing.py +233 -0
  221. massgen/tests/test_claude_code_orchestrator.py +175 -0
  222. massgen/tests/test_cli_backends.py +180 -0
  223. massgen/tests/test_code_execution.py +679 -0
  224. massgen/tests/test_external_agent_backend.py +134 -0
  225. massgen/tests/test_final_presentation_fallback.py +237 -0
  226. massgen/tests/test_gemini_planning_mode.py +351 -0
  227. massgen/tests/test_grok_backend.py +7 -10
  228. massgen/tests/test_http_mcp_server.py +42 -0
  229. massgen/tests/test_integration_simple.py +198 -0
  230. massgen/tests/test_mcp_blocking.py +125 -0
  231. massgen/tests/test_message_context_building.py +29 -47
  232. massgen/tests/test_orchestrator_final_presentation.py +48 -0
  233. massgen/tests/test_path_permission_manager.py +2087 -0
  234. massgen/tests/test_rich_terminal_display.py +14 -13
  235. massgen/tests/test_timeout.py +133 -0
  236. massgen/tests/test_v3_3agents.py +11 -12
  237. massgen/tests/test_v3_simple.py +8 -13
  238. massgen/tests/test_v3_three_agents.py +11 -18
  239. massgen/tests/test_v3_two_agents.py +8 -13
  240. massgen/token_manager/__init__.py +7 -0
  241. massgen/token_manager/token_manager.py +400 -0
  242. massgen/utils.py +52 -16
  243. massgen/v1/agent.py +45 -91
  244. massgen/v1/agents.py +18 -53
  245. massgen/v1/backends/gemini.py +50 -153
  246. massgen/v1/backends/grok.py +21 -54
  247. massgen/v1/backends/oai.py +39 -111
  248. massgen/v1/cli.py +36 -93
  249. massgen/v1/config.py +8 -12
  250. massgen/v1/logging.py +43 -127
  251. massgen/v1/main.py +18 -32
  252. massgen/v1/orchestrator.py +68 -209
  253. massgen/v1/streaming_display.py +62 -163
  254. massgen/v1/tools.py +8 -12
  255. massgen/v1/types.py +9 -23
  256. massgen/v1/utils.py +5 -23
  257. massgen-0.1.0.dist-info/METADATA +1245 -0
  258. massgen-0.1.0.dist-info/RECORD +273 -0
  259. massgen-0.1.0.dist-info/entry_points.txt +2 -0
  260. massgen/frontend/logging/__init__.py +0 -9
  261. massgen/frontend/logging/realtime_logger.py +0 -197
  262. massgen-0.0.3.dist-info/METADATA +0 -568
  263. massgen-0.0.3.dist-info/RECORD +0 -76
  264. massgen-0.0.3.dist-info/entry_points.txt +0 -2
  265. /massgen/backend/{Function calling openai responses.md → docs/Function calling openai responses.md} +0 -0
  266. {massgen-0.0.3.dist-info → massgen-0.1.0.dist-info}/WHEEL +0 -0
  267. {massgen-0.0.3.dist-info → massgen-0.1.0.dist-info}/licenses/LICENSE +0 -0
  268. {massgen-0.0.3.dist-info → massgen-0.1.0.dist-info}/top_level.txt +0 -0
@@ -1,568 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: massgen
3
- Version: 0.0.3
4
- Summary: Multi-Agent Scaling System - A powerful framework for collaborative AI
5
- Author-email: MassGen Team <contact@massgen.dev>
6
- License: Apache-2.0
7
- Project-URL: Homepage, https://github.com/Leezekun/MassGen
8
- Project-URL: Repository, https://github.com/Leezekun/MassGen
9
- Project-URL: Bug Reports, https://github.com/Leezekun/MassGen/issues
10
- Project-URL: Source, https://github.com/Leezekun/MassGen
11
- Project-URL: Documentation, https://github.com/Leezekun/MassGen/blob/main/README.md
12
- Keywords: ai,multi-agent,collaboration,orchestration,llm,claude,gemini,gpt,xai
13
- Classifier: Development Status :: 4 - Beta
14
- Classifier: Intended Audience :: Developers
15
- Classifier: Intended Audience :: Science/Research
16
- Classifier: License :: OSI Approved :: Apache Software License
17
- Classifier: Operating System :: OS Independent
18
- Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.10
20
- Classifier: Programming Language :: Python :: 3.11
21
- Classifier: Programming Language :: Python :: 3.12
22
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
- Requires-Python: >=3.10
25
- Description-Content-Type: text/markdown
26
- License-File: LICENSE
27
- Requires-Dist: datasets==3.2.0
28
- Requires-Dist: openai==1.71.0
29
- Requires-Dist: xai-sdk==1.0.0
30
- Requires-Dist: anthropic==0.49.0
31
- Requires-Dist: nest-asyncio==1.6.0
32
- Requires-Dist: wcwidth>=0.2.5
33
- Requires-Dist: google-genai>=1.27.0
34
- Requires-Dist: python-dotenv>=1.0.0
35
- Requires-Dist: PyYAML>=6.0
36
- Requires-Dist: rich==13.7.0
37
- Requires-Dist: requests>=2.31.0
38
- Requires-Dist: typing-extensions>=4.0.0
39
- Provides-Extra: dev
40
- Requires-Dist: pytest>=7.0.0; extra == "dev"
41
- Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
42
- Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
43
- Requires-Dist: black>=23.0.0; extra == "dev"
44
- Requires-Dist: isort>=5.12.0; extra == "dev"
45
- Requires-Dist: flake8>=6.0.0; extra == "dev"
46
- Requires-Dist: mypy>=1.3.0; extra == "dev"
47
- Requires-Dist: pre-commit>=3.0.0; extra == "dev"
48
- Requires-Dist: bandit>=1.7.0; extra == "dev"
49
- Requires-Dist: autoflake>=2.1.0; extra == "dev"
50
- Requires-Dist: pyupgrade>=3.7.0; extra == "dev"
51
- Provides-Extra: docs
52
- Requires-Dist: sphinx>=5.0.0; extra == "docs"
53
- Requires-Dist: sphinx-rtd-theme>=1.2.0; extra == "docs"
54
- Requires-Dist: myst-parser>=1.0.0; extra == "docs"
55
- Provides-Extra: all
56
- Dynamic: license-file
57
-
58
- <p align="center">
59
- <img src="assets/logo.png" alt="MassGen Logo" width="360" />
60
- </p>
61
-
62
- <p align="center">
63
- <a href="https://www.python.org/downloads/">
64
- <img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="Python 3.10+" style="margin-right: 5px;">
65
- </a>
66
- <a href="LICENSE">
67
- <img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License" style="margin-right: 5px;">
68
- </a>
69
- <a href="https://discord.massgen.ai">
70
- <img src="https://img.shields.io/discord/1153072414184452236?color=7289da&label=chat&logo=discord&style=flat-square" alt="Join our Discord">
71
- </a>
72
- </p>
73
-
74
- <h1 align="center">🚀 MassGen: Multi-Agent Scaling System for GenAI</h1>
75
-
76
- <p align="center">
77
- <i>MassGen is a cutting-edge multi-agent system that leverages the power of collaborative AI to solve complex tasks.</i>
78
- </p>
79
-
80
- <p align="center">
81
- <a href="https://youtu.be/Dp2oldJJImw">
82
- <img src="https://img.youtube.com/vi/Dp2oldJJImw/0.jpg" alt="MassGen Demo Video" width="600">
83
- </a>
84
- </p>
85
-
86
- <p align="center">
87
- <i>Multi-agent scaling through intelligent collaboration in Grok Heavy style</i>
88
- </p>
89
-
90
- MassGen is a cutting-edge multi-agent system that leverages the power of collaborative AI to solve complex tasks. It assigns a task to multiple AI agents who work in parallel, observe each other's progress, and refine their approaches to converge on the best solution to deliver a comprehensive and high-quality result. The power of this "parallel study group" approach is exemplified by advanced systems like xAI's Grok Heavy and Google DeepMind's Gemini Deep Think.
91
- This project started with the "threads of thought" and "iterative refinement" ideas presented in [The Myth of Reasoning](https://docs.ag2.ai/latest/docs/blog/2025/04/16/Reasoning/), and extends the classic "multi-agent conversation" idea in [AG2](https://github.com/ag2ai/ag2). Here is a [video recording](https://www.youtube.com/watch?v=xM2Uguw1UsQ) of the background context introduction presented at the Berkeley Agentic AI Summit 2025.
92
-
93
- ---
94
-
95
- ## 📋 Table of Contents
96
-
97
- <details open>
98
- <summary><h3>✨ Key Features</h3></summary>
99
-
100
- - [Cross-Model/Agent Synergy](#-key-features-1)
101
- - [Parallel Processing](#-key-features-1)
102
- - [Intelligence Sharing](#-key-features-1)
103
- - [Consensus Building](#-key-features-1)
104
- - [Live Visualization](#-key-features-1)
105
- </details>
106
-
107
- <details open>
108
- <summary><h3>🏗️ System Design</h3></summary>
109
-
110
- - [System Architecture](#%EF%B8%8F-system-design-1)
111
- - [Parallel Processing](#%EF%B8%8F-system-design-1)
112
- - [Real-time Collaboration](#%EF%B8%8F-system-design-1)
113
- - [Convergence Detection](#%EF%B8%8F-system-design-1)
114
- - [Adaptive Coordination](#%EF%B8%8F-system-design-1)
115
- </details>
116
-
117
- <details open>
118
- <summary><h3>🚀 Quick Start</h3></summary>
119
-
120
- - [📥 Installation](#1--installation)
121
- - [🔐 API Configuration](#2--api-configuration)
122
- - [🧩 Supported Models and Tools](#3--supported-models-and-tools)
123
- - [Models](#models)
124
- - [Tools](#tools)
125
- - [🏃 Run MassGen](#4--run-massgen)
126
- - [Quick Test with A Single Model](#quick-test-with-a-single-model)
127
- - [Multiple Agents from Config](#multiple-agents-from-config)
128
- - [CLI Configuration Parameters](#cli-configuration-parameters)
129
- - [Configuration File Format](#configuration-file-format)
130
- - [Interactive Multi-Turn Mode](#interactive-multi-turn-mode)
131
- - [📊 View Results](#5--view-results)
132
- - [Real-time Display](#real-time-display)
133
- - [Comprehensive Logging](#comprehensive-logging)
134
- </details>
135
-
136
- <details open>
137
- <summary><h3>💡 Examples</h3></summary>
138
-
139
- - [📚 Case Studies](#case-studies)
140
- - [❓ Question Answering](#1--question-answering)
141
- - [🧠 Creative Writing](#2--creative-writing)
142
- - [🔬 Research](#3-research)
143
- </details>
144
-
145
- <details open>
146
- <summary><h3>🗺️ Roadmap</h3></summary>
147
-
148
- - [Key Future Enhancements](#key-future-enhancements)
149
- - Advanced Agent Collaboration
150
- - Expanded Model, Tool & Agent Integration
151
- - Improved Performance & Scalability
152
- - Enhanced Developer Experience
153
- - Web Interface
154
- - [v0.0.4 Roadmap](#v004-roadmap)
155
- </details>
156
-
157
- <details open>
158
- <summary><h3>📚 Additional Resources</h3></summary>
159
-
160
- - [🤝 Contributing](#-contributing)
161
- - [📄 License](#-license)
162
- - [⭐ Star History](#-star-history)
163
- </details>
164
-
165
- ---
166
-
167
- ## ✨ Key Features
168
-
169
- | Feature | Description |
170
- |---------|-------------|
171
- | **🤝 Cross-Model/Agent Synergy** | Harness strengths from diverse frontier model-powered agents |
172
- | **⚡ Parallel Processing** | Multiple agents tackle problems simultaneously |
173
- | **👥 Intelligence Sharing** | Agents share and learn from each other's work |
174
- | **🔄 Consensus Building** | Natural convergence through collaborative refinement |
175
- | **📊 Live Visualization** | See agents' working processes in real-time |
176
-
177
- ---
178
-
179
- ## 🏗️ System Design
180
-
181
- MassGen operates through an architecture designed for **seamless multi-agent collaboration**:
182
-
183
- ```mermaid
184
- graph TB
185
- O[🚀 MassGen Orchestrator<br/>📋 Task Distribution & Coordination]
186
-
187
- subgraph Collaborative Agents
188
- A1[Agent 1<br/>🏗️ Anthropic/Claude + Tools]
189
- A2[Agent 2<br/>🌟 Google/Gemini + Tools]
190
- A3[Agent 3<br/>🤖 OpenAI/GPT/O + Tools]
191
- A4[Agent 4<br/>⚡ xAI/Grok + Tools]
192
- end
193
-
194
- H[🔄 Shared Collaboration Hub<br/>📡 Real-time Notification & Consensus]
195
-
196
- O --> A1 & A2 & A3 & A4
197
- A1 & A2 & A3 & A4 <--> H
198
-
199
- classDef orchestrator fill:#e1f5fe,stroke:#0288d1,stroke-width:3px
200
- classDef agent fill:#f3e5f5,stroke:#7b1fa2,stroke-width:2px
201
- classDef hub fill:#e8f5e8,stroke:#388e3c,stroke-width:2px
202
-
203
- class O orchestrator
204
- class A1,A2,A3,A4 agent
205
- class H hub
206
- ```
207
-
208
- The system's workflow is defined by the following key principles:
209
-
210
- **Parallel Processing** - Multiple agents tackle the same task simultaneously, each leveraging their unique capabilities (different models, tools, and specialized approaches).
211
-
212
- **Real-time Collaboration** - Agents continuously share their working summaries and insights through a notification system, allowing them to learn from each other's approaches and build upon collective knowledge.
213
-
214
- **Convergence Detection** - The system intelligently monitors when agents have reached stability in their solutions and achieved consensus through natural collaboration rather than forced agreement.
215
-
216
- **Adaptive Coordination** - Agents can restart and refine their work when they receive new insights from others, creating a dynamic and responsive problem-solving environment.
217
-
218
- This collaborative approach ensures that the final output leverages collective intelligence from multiple AI systems, leading to more robust and well-rounded results than any single agent could achieve alone.
219
-
220
- ---
221
-
222
- ## 🚀 Quick Start
223
-
224
- ### 1. 📥 Installation
225
-
226
- ```bash
227
- git clone https://github.com/Leezekun/MassGen.git
228
- cd MassGen
229
- pip install uv
230
- uv venv
231
- ```
232
-
233
- ### 2. 🔐 API Configuration
234
-
235
- Create a `.env` file in the `massgen` directory with your API keys:
236
-
237
- ```bash
238
- # Copy example configuration
239
- cp .env.example .env
240
-
241
- # Edit with your API keys
242
- ANTHROPIC_API_KEY=your-anthropic-key-here
243
- GEMINI_API_KEY=your-gemini-key-here
244
- OPENAI_API_KEY=your-openai-key-here
245
- XAI_API_KEY=your-xai-key-here
246
- ```
247
-
248
- Make sure you set up the API key for the model you want to use.
249
-
250
- **Useful links to get API keys:**
251
- - [Claude](https://docs.anthropic.com/en/api/overview)
252
- - [Gemini](https://ai.google.dev/gemini-api/docs)
253
- - [Grok](https://docs.x.ai/docs/overview)
254
- - [OpenAI](https://platform.openai.com/api-keys)
255
-
256
- ### 3. 🧩 Supported Models and Tools
257
-
258
- #### Models
259
-
260
- The system currently supports four model providers with advanced reasoning capabilities: **Anthropic Claude**, **Google Gemini**, **OpenAI**, **xAI Grok**.
261
- More providers and local inference of open-weight models (using vllm or sglang) are welcome to be added.
262
-
263
- #### Tools
264
-
265
- MassGen agents can leverage various tools to enhance their problem-solving capabilities. `Claude`, `Gemini`, and `OpenAI` models support built-in web search and code execution. `Grok` supports web search as well, but it does not currently offer native code execution at the model level.
266
-
267
- **Supported Built-in Tools by Models:**
268
-
269
- | Backend | Live Search | Code Execution |
270
- |---------|:-----------:|:--------------:|
271
- | **Claude** | ✅ | ✅ |
272
- | **OpenAI** | ✅ | ✅ |
273
- | **Grok** | ✅ | ❌ |
274
- | **Gemini** | ✅ | ✅ |
275
-
276
- ### 4. 🏃 Run MassGen
277
-
278
- #### Quick Test with A Single Model
279
-
280
- ```bash
281
- uv run python -m massgen.cli --model gemini-2.5-flash "Which AI won IMO in 2025?"
282
- uv run python -m massgen.cli --model gpt-4o-mini "Which AI won IMO in 2025?"
283
- uv run python -m massgen.cli --model grok-3-mini "Which AI won IMO in 2025?"
284
- ```
285
-
286
- All supported models can be found [here](massgen/utils.py).
287
-
288
- #### Multiple Agents from Config
289
- ```bash
290
- # Use configuration file
291
- uv run python -m massgen.cli --config three_agents_default.yaml "Compare different approaches to renewable energy"
292
- ```
293
-
294
- All available quick configuration files can be found [here](massgen/configs).
295
-
296
- #### CLI Configuration Parameters
297
-
298
- | Parameter | Description |
299
- |-------------------|-------------|
300
- | `--config` | Path to YAML configuration file with agent definitions, model parameters, backend parameters and UI settings |
301
- | `--backend` | Backend type for quick setup without a config file (`claude`, `gemini`, `grok` or `openai`). Optional because we can infer backend type through model.|
302
- | `--model` | Model name for quick setup (e.g., `gpt-4o-mini`, `claude-sonnet-4-20250514`, ...). See all [supported models](massgen/utils.py). `--config` and `--model` are mutually exclusive - use one or the other. |
303
- | `--system-message` | System prompt for the agent in quick setup mode. If `--config` is provided, `--system-message` is omitted. |
304
- | `--no-display` | Disable real-time streaming UI coordination display (fallback to simple text output).|
305
- | `--no-logs` | Disable real-time logging.|
306
- | `"<your question>"` | Optional single-question input; if omitted, MassGen enters interactive chat mode. |
307
-
308
- #### Configuration File Format
309
-
310
- MassGen supports YAML configuration files with the following structure (All available quick configuration files can be found [here](massgen/configs)):
311
-
312
- **Single Agent Configuration:**
313
-
314
- Use the `agent` field to define a single agent with its backend and settings:
315
-
316
- ```yaml
317
- agent:
318
- id: "<agent_name>"
319
- backend:
320
- type: "claude" | "gemini" | "grok" | "openai" #Type of backend (Optional because we can infer backend type through model.)
321
- model: "<model_name>" # Model name
322
- api_key: "<optional_key>" # API key for backend. Uses env vars by default.
323
- system_message: "..." # System Message for Single Agent
324
- ```
325
-
326
- **Multi-Agent Configuration:**
327
-
328
- Use the `agents` field to define multiple agents, each with its own backend and config:
329
-
330
- ```yaml
331
- agents: # Multiple agents (alternative to 'agent')
332
- - id: "<agent1 name>"
333
- backend:
334
- type: "claude" | "gemini" | "grok" | "openai" #Type of backend (Optional because we can infer backend type through model.)
335
- model: "<model_name>" # Model name
336
- api_key: "<optional_key>" # API key for backend. Uses env vars by default.
337
- system_message: "..." # System Message for Single Agent
338
- - id: "..."
339
- backend:
340
- type: "..."
341
- model: "..."
342
- ...
343
- system_message: "..."
344
- ```
345
-
346
- **Backend Configuration:**
347
-
348
- Detailed parameters for each agent's backend can be specified using the following configuration formats:
349
-
350
- #### Claude
351
-
352
- ```yaml
353
- backend:
354
- type: "claude"
355
- model: "claude-sonnet-4-20250514" # Model name
356
- api_key: "<optional_key>" # API key for backend. Uses env vars by default.
357
- temperature: 0.7 # Creativity vs consistency (0.0-1.0)
358
- max_tokens: 2500 # Maximum response length
359
- enable_web_search: true # Web search capability
360
- enable_code_execution: true # Code execution capability
361
- ```
362
-
363
- #### Gemini
364
-
365
- ```yaml
366
- backend:
367
- type: "gemini"
368
- model: "gemini-2.5-flash" # Model name
369
- api_key: "<optional_key>" # API key for backend. Uses env vars by default.
370
- temperature: 0.7 # Creativity vs consistency (0.0-1.0)
371
- max_tokens: 2500 # Maximum response length
372
- enable_web_search: true # Web search capability
373
- enable_code_execution: true # Code execution capability
374
- ```
375
-
376
- #### Grok
377
-
378
- ```yaml
379
- backend:
380
- type: "grok"
381
- model: "grok-3-mini" # Model name
382
- api_key: "<optional_key>" # API key for backend. Uses env vars by default.
383
- temperature: 0.7 # Creativity vs consistency (0.0-1.0)
384
- max_tokens: 2500 # Maximum response length
385
- enable_web_search: true # Web search capability
386
- return_citations: true # Include search result citations
387
- max_search_results: 10 # Maximum search results to use
388
- search_mode: "auto" # Search strategy: "auto", "fast", "thorough"
389
- ```
390
-
391
- #### OpenAI
392
-
393
- ```yaml
394
- backend:
395
- type: "openai"
396
- model: "gpt-4o" # Model name
397
- api_key: "<optional_key>" # API key for backend. Uses env vars by default.
398
- temperature: 0.7 # Creativity vs consistency (0.0-1.0, o-series models don't support this)
399
- max_tokens: 2500 # Maximum response length (o-series models don't support this)
400
- enable_web_search: true # Web search capability
401
- enable_code_interpreter: true # Code interpreter capability
402
- ```
403
-
404
- **UI Configuration:**
405
-
406
- Configure how MassGen displays information and handles logging during execution:
407
-
408
- ```yaml
409
- ui:
410
- display_type: "rich_terminal" | "terminal" | "simple" # Display format for agent interactions
411
- logging_enabled: true | false # Enable/disable real-time logging
412
- ```
413
-
414
- - `display_type`: Controls the visual presentation of agent interactions
415
- - `"rich_terminal"`: Full-featured display with multi-region layout, live status updates, and colored output
416
- - `"terminal"`: Standard terminal display with basic formatting and sequential output
417
- - `"simple"`: Plain text output without any formatting or special display features
418
- - `logging_enabled`: When `true`, saves detailed timestamp, agent outputs and system status
419
-
420
- **Advanced Parameters:**
421
- ```yaml
422
- # Global backend parameters
423
- backend_params:
424
- temperature: 0.7
425
- max_tokens: 2000
426
- enable_web_search: true # Web search capability (all backends)
427
- enable_code_interpreter: true # OpenAI only
428
- enable_code_execution: true # Gemini/Claude only
429
- ```
430
-
431
- #### Interactive Multi-Turn Mode
432
-
433
- MassGen supports an interactive mode where you can have ongoing conversations with the system:
434
-
435
- ```bash
436
- # Start interactive mode with a single agent
437
- uv run python -m massgen.cli --model gpt-4o-mini
438
-
439
- # Start interactive mode with configuration file
440
- uv run python -m massgen.cli --config three_agents_default.yaml
441
- ```
442
-
443
- **Interactive Mode Features:**
444
- - **Multi-turn conversations**: Multiple agents collaborate to chat with you in an ongoing conversation
445
- - **Real-time feedback**: Displays real-time agent and system status
446
- - **Clear conversation history**: Type `/clear` to reset the conversation and start fresh
447
- - **Easy exit**: Type `/quit`, `/exit`, `/q`, or press `Ctrl+C` to stop
448
-
449
- **Watch the recorded demo:**
450
-
451
- [![MassGen Case Study](https://img.youtube.com/vi/h1R7fxFJ0Zc/0.jpg)](https://www.youtube.com/watch?v=h1R7fxFJ0Zc)
452
-
453
- ### 5. 📊 View Results
454
-
455
- The system provides multiple ways to view and analyze results:
456
-
457
- #### Real-time Display
458
- - **Live Collaboration View**: See agents working in parallel through a multi-region terminal display
459
- - **Status Updates**: Real-time phase transitions, voting progress, and consensus building
460
- - **Streaming Output**: Watch agents' reasoning and responses as they develop
461
-
462
- **Watch an example here:**
463
-
464
- [![MassGen Case Study](https://img.youtube.com/vi/Dp2oldJJImw/0.jpg)](https://www.youtube.com/watch?v=Dp2oldJJImw)
465
-
466
- #### Comprehensive Logging
467
- All sessions are automatically logged with detailed information. The file can be viewed throught the interaction with UI.
468
-
469
- ```bash
470
- agent_outputs/
471
- ├── agent_1.txt # The full logs by agent 1
472
- ├── agent_2.txt # The full logs by agent 2
473
- ├── agent_3.txt # The full logs by agent 3
474
- ├── system_status.txt # The full logs of system status
475
- ```
476
- ---
477
-
478
- ## 💡 Examples
479
-
480
- Here are a few examples of how you can use MassGen for different tasks:
481
-
482
- ### Case Studies
483
-
484
- To see how MassGen works in practice, check out these detailed case studies based on real session logs:
485
-
486
- - [**MassGen Case Studies**](docs/case_studies/index.md)
487
-
488
- <!-- Uncomment when we add coding agent support -->
489
- <!-- ### 1. 📝 Code Generation
490
-
491
- ```bash
492
- uv run python cli.py --config examples/fast_config.yaml "Design a logo for MassGen (multi-agent scaling system for GenAI) GitHub README"
493
- ``` -->
494
-
495
- ### 1. ❓ Question Answering
496
-
497
- ```bash
498
- # Ask a question about a complex topic
499
- uv run python -m massgen.cli --config massgen/configs/gemini_4o_claude.yaml "what's best to do in Stockholm in October 2025"
500
-
501
- uv run python -m massgen.cli --config massgen/configs/gemini_4o_claude.yaml "give me all the talks on agent frameworks in Berkeley Agentic AI Summit 2025, note, the sources must include the word Berkeley, don't include talks from any other agentic AI summits"
502
- ```
503
-
504
- ### 2. 🧠 Creative Writing
505
-
506
- ```bash
507
- # Generate a short story
508
- uv run python -m massgen.cli --config massgen/configs/gemini_4o_claude.yaml "Write a short story about a robot who discovers music."
509
- ```
510
-
511
- ### 3. Research
512
- ```bash
513
- uv run python -m massgen.cli --config massgen/configs/gemini_4o_claude.yaml "How much does it cost to run HLE benchmark with Grok-4"
514
- ```
515
-
516
- ---
517
-
518
- ## 🗺️ Roadmap
519
-
520
- MassGen is currently in its foundational stage, with a focus on parallel, asynchronous multi-agent collaboration and orchestration. Our roadmap is centered on transforming this foundation into a highly robust, intelligent, and user-friendly system, while enabling frontier research and exploration. An earlier version of MassGen can be found [here](./massgen/v1).
521
-
522
- ⚠️ **Early Stage Notice:** As MassGen is in active development, please expect upcoming breaking architecture changes as we continue to refine and improve the system.
523
-
524
- ### Key Future Enhancements:
525
-
526
- - **Advanced Agent Collaboration:** Exploring improved communication patterns and consensus-building protocols to improve agent synergy.
527
- - **Expanded Model, Tool & Agent Integration:** Adding support for more models/tools/agents, including a wider range of tools like MCP Servers, and coding agents.
528
- - **Improved Performance & Scalability:** Optimizing the streaming and logging mechanisms for better performance and resource management.
529
- - **Enhanced Developer Experience:** Introducing a more modular agent design and a comprehensive benchmarking framework for easier extension and evaluation.
530
- - **Web Interface:** Developing a web-based UI for better visualization and interaction with the agent ecosystem.
531
-
532
- We welcome community contributions to help us achieve these goals.
533
-
534
- ### v0.0.4 Roadmap
535
-
536
- Version 0.0.4 focuses primarily on **Coding Agent Integration**, introducing Claude Code CLI and Gemini CLI as powerful coding agents. Key enhancements include:
537
-
538
- - **Coding Agent Integration** (Required): Seamless integration of Claude Code CLI and Gemini CLI with coding-specific tools and workflows
539
- - **Enhanced Backend Features** (Optional): Improved error handling, health monitoring, and support for additional model providers
540
- - **Advanced CLI Features** (Optional): Conversation save/load functionality, templates, export formats, and better multi-turn display
541
-
542
- For detailed milestones and technical specifications, see the [full v0.0.4 roadmap](ROADMAP_v0.0.4.md).
543
-
544
- ---
545
-
546
- ## 🤝 Contributing
547
-
548
- We welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details.
549
-
550
- ---
551
-
552
- ## 📄 License
553
-
554
- This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
555
-
556
- ---
557
-
558
- <div align="center">
559
-
560
- **⭐ Star this repo if you find it useful! ⭐**
561
-
562
- Made with ❤️ by the MassGen team
563
-
564
- </div>
565
-
566
- ## ⭐ Star History
567
-
568
- [![Star History Chart](https://api.star-history.com/svg?repos=Leezekun/MassGen&type=Date)](https://www.star-history.com/#Leezekun/MassGen&Date)
@@ -1,76 +0,0 @@
1
- massgen/__init__.py,sha256=o_XPUuCGBKj3iMl0yK8_sZ46mSHLshMTW6OyPZ8CM3c,3727
2
- massgen/agent_config.py,sha256=IMsSKvk_-c0v7ngfmUUTOCxSS4jA1UN30iioHSgwcZU,18482
3
- massgen/chat_agent.py,sha256=szqDXSAcFuB39XRXfoDjXHZht1pGbGtpNEtrsVy5bKY,16597
4
- massgen/cli.py,sha256=CIoOuj4wpKof1Z7ZljCOX7J-N1ejM0LBHULGP4z4RTE,25685
5
- massgen/message_templates.py,sha256=tcWQ8rea6QZ3SXhNMU9YP-mB140p4tffqBIkF9g9lyw,17783
6
- massgen/orchestrator.py,sha256=KEXSKw7RfIBXp41G2zo7HpRqplXOWyZyYWgLj26qkBk,53788
7
- massgen/utils.py,sha256=ENmqIXB9UQYZcEudzA9TadT_9kKJ2FJDYgLgc-T41eY,1844
8
- massgen/backend/CLAUDE_API_RESEARCH.md,sha256=RSfbgvhTuA0T_9AgWY-fvTurB_Auaddc0CXNubp5B5k,9918
9
- massgen/backend/Function calling openai responses.md,sha256=ffrh5nEkO0tQGO8vJeamcWsgIEB_37XShrSYKLZldTg,37480
10
- massgen/backend/GEMINI_API_DOCUMENTATION.md,sha256=d26j5nfYgfH-V3zLqaykt4SsfJEH4A04H7vsuSVtvqI,12358
11
- massgen/backend/OPENAI_RESPONSES_API_FORMAT.md,sha256=182ARVDLtxHZ44iZLsNoGal6BJBP3W-bT0gN2O7EC8w,1901
12
- massgen/backend/__init__.py,sha256=kEXCg7jmhrJYlby48SzbL92rCBiOlIFohDL74BYxMw4,673
13
- massgen/backend/base.py,sha256=btKIxFvftwEnfoRSeg_xRgtgfsRsRfjlOSdWvvWl_t8,5884
14
- massgen/backend/chat_completions.py,sha256=uOEzhIwa4dmtVZ95e82GrzFQtgq4yXfO33ImRjRVrtI,10662
15
- massgen/backend/claude.py,sha256=MpJhjDq7yNkSRko1uvAKIEWPFIedXJlgNeuSBopq9I8,31139
16
- massgen/backend/gemini.py,sha256=uldXpscvSdeOgaIOCOEWXBcXMVMObKspZR087jfeVTg,26872
17
- massgen/backend/grok.py,sha256=52JTncq5vM7-X616ox63UrFvfLKSbSSs9rJPXkMagxM,7475
18
- massgen/backend/response.py,sha256=PkUveCDFD6PP1qoB9egUUdi__OLqadZUBVMYr1BGzy4,19205
19
- massgen/configs/README.md,sha256=KcbM--N8Uhw9wrFSiRGUYX0NYIQvKtWq8h7HJlt_n_U,10780
20
- massgen/configs/creative_team.yaml,sha256=eYTE3-B4UPj3csRKZgX8vtP9UV0MS5ceC3pZaxlxmuA,1626
21
- massgen/configs/gemini_4o_claude.yaml,sha256=r76DskOTV4cY_Zz5zRO8n9Q9xcqj9rIsPCOdhDpnL-c,1267
22
- massgen/configs/news_analysis.yaml,sha256=9wckdoTCkpI5M9VydvjwdCJF6DKUDGevSyNEW6fhR-I,1620
23
- massgen/configs/research_team.yaml,sha256=LitEWWkgDyFz3hBC0iNxBuQWNL2N3wu4HotMMIxBULY,1738
24
- massgen/configs/single_agent.yaml,sha256=fsCgSx998Ii7htZ-wUt1x87MF4qlnQXlbYobbAP6JMc,522
25
- massgen/configs/single_flash2.5.yaml,sha256=5qm-dVoON5ivfSva3uiwiDl2lYy55VuVDxH2KHFAtUI,1315
26
- massgen/configs/technical_analysis.yaml,sha256=msxeWRL0duVXpIMixNynSkLzRYECJY9FsrjwQ0PzoS4,1698
27
- massgen/configs/three_agents_default.yaml,sha256=uc5hDziXe3DYc_VHVh79Vwe-iJ6zjX2XDmbDr6IS9l8,1248
28
- massgen/configs/travel_planning.yaml,sha256=fBWA4imuotAKJ7C5Xx7YCyxkx1dHYdixXydiYrTBW10,1688
29
- massgen/configs/two_agents.yaml,sha256=PO43y2-WWDmoaY_WqDCC_qsiTaAlaYflu_pxwdGSSrQ,1096
30
- massgen/frontend/__init__.py,sha256=X6l--sGKJEC706oXwM8Bdt18DCa9FLrHD7yCfWmqJVM,712
31
- massgen/frontend/coordination_ui.py,sha256=t8-EWAI5E4O00y4PrSE1bekOJS1aVTW3kxgB5x0DhiU,39669
32
- massgen/frontend/displays/__init__.py,sha256=QxEXAGDTBbFenYafmXLgSCulFcbaUr7ls5atXIkX3m8,536
33
- massgen/frontend/displays/base_display.py,sha256=AChusaL96JxkKBxi6KP9G_Wqel5Q4i2rPgu_PU8kczg,2537
34
- massgen/frontend/displays/rich_terminal_display.py,sha256=WkAR1ln2biizkohQnmw6pWFRO9BTW8AsH8Y0VRxt_Kg,137964
35
- massgen/frontend/displays/simple_display.py,sha256=-xPJ1S28-hsGLKeHZbAFsElHe5lctqz7PiSPSWjF0Zs,3468
36
- massgen/frontend/displays/terminal_display.py,sha256=ZyR9RXjgMEIY-zb-WYZBZrJePWL2ydOYnRm7yuvShsc,15687
37
- massgen/frontend/logging/__init__.py,sha256=UWdKImfGjD7h4d4kKmWiz1JdRUev5i3kuVt5fJkCW4s,192
38
- massgen/frontend/logging/realtime_logger.py,sha256=wz1h-2BWCr6tHnViV8qq_eQ6k7AgGLMJorbcj6ZV0dg,7262
39
- massgen/tests/__init__.py,sha256=db7BtsWb8Rhj9KPj1YK1mUrNzz_Bv9U7x4fpQj6vMPI,187
40
- massgen/tests/multi_turn_conversation_design.md,sha256=pubuFvdY5RjPeU_0F-VjAslkRgCcrGjDavaXuR5W8tM,7867
41
- massgen/tests/multiturn_llm_input_analysis.md,sha256=Xw8PX0oAIbF_zjlRXCA62EpX1xAOGUq9brYl3UkyAR0,6997
42
- massgen/tests/test_case_studies.md,sha256=b24fHSGnmzqt0d9qgjm7b7WuHa3kGj1ZkRAfEyu-idU,4089
43
- massgen/tests/test_claude_backend.py,sha256=h-JpCjq_lhW7BnWTuY-jLivmJ_hyo7w-WsSWFwiqa24,9874
44
- massgen/tests/test_grok_backend.py,sha256=spwbw_hsdI4AQbNUnlNOGy-Is-CfaphKzE8Z6X0VJgc,4825
45
- massgen/tests/test_message_context_building.py,sha256=07UyxpYjCSxvcu4zcIb_8eS_7uv3S4ntPHynt7OV2yk,10662
46
- massgen/tests/test_rich_terminal_display.py,sha256=8JDVrkpDtPTljuYJlc9OgSsnAVfAwlnmjTaK5H_ORE8,12210
47
- massgen/tests/test_v3_3agents.py,sha256=IpGKPCyWMJjth097Q7-ddafgLg_vqnjViJ3YlJOorAY,3814
48
- massgen/tests/test_v3_simple.py,sha256=LXGENVirfNV2peiGUjDAo7SEbnvrI1-5ivIe6SlL3yc,6586
49
- massgen/tests/test_v3_three_agents.py,sha256=gwpS63975fY3az6JaM6yitZo5HvZf8mHu3SJePtN-qo,9272
50
- massgen/tests/test_v3_two_agents.py,sha256=FctH7h693ZiIWf1jvfcEw9YhIw8-MYUfRpiBplnz43k,5756
51
- massgen/v1/README.md,sha256=37ZEbNR0O5IcdqQXkqtvNCpmVX1Z_dO4HGcKreaP-0E,13631
52
- massgen/v1/__init__.py,sha256=hZUuhjtGlLJ-QW4Ty2V4IMlaoUB5oP0TSl0XeuCoWqU,2733
53
- massgen/v1/agent.py,sha256=LzKv1Y398EBlas0MPfgumrbOE34J8TK-Ja-mtKFy4LA,26098
54
- massgen/v1/agents.py,sha256=MhI1rP_ye6dwzpuMxkEpKtTuhOR7MmjbP6elnE4SfZs,12695
55
- massgen/v1/cli.py,sha256=DlrAnNVngItq_EA7Kq58AbALutKf-Faw3427pVDRtJU,13082
56
- massgen/v1/config.py,sha256=NCedK5qklTQ6guS3de456GEQ683kEHCudKVV7FX3S1E,5142
57
- massgen/v1/logging.py,sha256=U0x7QwX_ioCPKUxjIFLn6eZmVsu5ShEVFCBoHGJIp9k,35439
58
- massgen/v1/main.py,sha256=lpHdnwbwFxPg3SZaucf9mhMSaNQFsXzaw_AmTBRWGQM,13079
59
- massgen/v1/orchestrator.py,sha256=PRx3JZtphCkQy1OFsj2YVmPPMTaR5gDY0O79mJN0uXA,47500
60
- massgen/v1/streaming_display.py,sha256=kYpFlKKTOcbmsmg9RaVItTM858sK8-EZr7koFmliHHw,48280
61
- massgen/v1/tools.py,sha256=4LTkwT_nyeJjPgVMJqFm6K_Wrm25gv3tH2kv9LLGfHs,4932
62
- massgen/v1/types.py,sha256=W8GXw9vQ_PR92zDU6pap9Xu3WZj8fpuh_aucf4z3wN8,7712
63
- massgen/v1/utils.py,sha256=fO55oWtEOxrnkZurLDyq4JNSka89OX3UknHjqnEp92U,5786
64
- massgen/v1/backends/gemini.py,sha256=k0uwF-p-jYdKg4sQLYsw9UD6H6TjInkY-GApFA8cFWE,25482
65
- massgen/v1/backends/grok.py,sha256=MTY-m0dBjqY0TiYALaSBuaf4vIhgDFpByvh90-yyK6I,16951
66
- massgen/v1/backends/oai.py,sha256=6uRd4agXvfYjZmFqWpeCftRn1ng9Obrdzuwxe6lYD8k,27339
67
- massgen/v1/examples/fast-4o-mini-config.yaml,sha256=t7zmN8sWQrrWivjaBB9w_WHFDnU-KsTBHFJ6i7Dzn7k,851
68
- massgen/v1/examples/fast_config.yaml,sha256=BDBCpSYJPzTZi9vAEGsCZ3lt3JV25RN-4Nf_17JAhUU,846
69
- massgen/v1/examples/production.yaml,sha256=hrNqzOqlQG1sL-5U8ZlA8QpCwGSoiCtqMu7Mi2gOd9s,2002
70
- massgen/v1/examples/single_agent.yaml,sha256=h8ysGIwPjvgnpRxTcBqw5nBz5D2MTXI_Ygdn4D9RdIA,1256
71
- massgen-0.0.3.dist-info/licenses/LICENSE,sha256=_r2TwhSv0GcpGeIKfwbz9z2qzOI62FHCfgSfnZ1z2fc,11386
72
- massgen-0.0.3.dist-info/METADATA,sha256=eCQYNquEn3csCHBxyitpfq0RSQ2KAed081h_kdrFZvw,22683
73
- massgen-0.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
74
- massgen-0.0.3.dist-info/entry_points.txt,sha256=YUMEW8yuD6B0ygSqvAC3C26jkh8PiIHHmGhcdksYBMY,45
75
- massgen-0.0.3.dist-info/top_level.txt,sha256=jm8ZxEGdkjsh8aPWXvCpnexL_S2ZRkFeT9vl6vIm_3I,8
76
- massgen-0.0.3.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- massgen = massgen.cli:main