massgen 0.1.4__py3-none-any.whl → 0.1.5__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 (46) hide show
  1. massgen/__init__.py +1 -1
  2. massgen/chat_agent.py +340 -20
  3. massgen/cli.py +326 -19
  4. massgen/configs/README.md +52 -10
  5. massgen/configs/memory/gpt5mini_gemini_baseline_research_to_implementation.yaml +94 -0
  6. massgen/configs/memory/gpt5mini_gemini_context_window_management.yaml +187 -0
  7. massgen/configs/memory/gpt5mini_gemini_research_to_implementation.yaml +127 -0
  8. massgen/configs/memory/gpt5mini_high_reasoning_gemini.yaml +107 -0
  9. massgen/configs/memory/single_agent_compression_test.yaml +64 -0
  10. massgen/configs/tools/custom_tools/multimodal_tools/playwright_with_img_understanding.yaml +98 -0
  11. massgen/configs/tools/custom_tools/multimodal_tools/understand_video_example.yaml +54 -0
  12. massgen/memory/README.md +277 -0
  13. massgen/memory/__init__.py +26 -0
  14. massgen/memory/_base.py +193 -0
  15. massgen/memory/_compression.py +237 -0
  16. massgen/memory/_context_monitor.py +211 -0
  17. massgen/memory/_conversation.py +255 -0
  18. massgen/memory/_fact_extraction_prompts.py +333 -0
  19. massgen/memory/_mem0_adapters.py +257 -0
  20. massgen/memory/_persistent.py +687 -0
  21. massgen/memory/docker-compose.qdrant.yml +36 -0
  22. massgen/memory/docs/DESIGN.md +388 -0
  23. massgen/memory/docs/QUICKSTART.md +409 -0
  24. massgen/memory/docs/SUMMARY.md +319 -0
  25. massgen/memory/docs/agent_use_memory.md +408 -0
  26. massgen/memory/docs/orchestrator_use_memory.md +586 -0
  27. massgen/memory/examples.py +237 -0
  28. massgen/orchestrator.py +207 -7
  29. massgen/tests/memory/test_agent_compression.py +174 -0
  30. massgen/tests/memory/test_context_window_management.py +286 -0
  31. massgen/tests/memory/test_force_compression.py +154 -0
  32. massgen/tests/memory/test_simple_compression.py +147 -0
  33. massgen/tests/test_agent_memory.py +534 -0
  34. massgen/tests/test_conversation_memory.py +382 -0
  35. massgen/tests/test_orchestrator_memory.py +620 -0
  36. massgen/tests/test_persistent_memory.py +435 -0
  37. massgen/token_manager/token_manager.py +6 -0
  38. massgen/tools/__init__.py +8 -0
  39. massgen/tools/_planning_mcp_server.py +520 -0
  40. massgen/tools/planning_dataclasses.py +434 -0
  41. {massgen-0.1.4.dist-info → massgen-0.1.5.dist-info}/METADATA +109 -76
  42. {massgen-0.1.4.dist-info → massgen-0.1.5.dist-info}/RECORD +46 -12
  43. {massgen-0.1.4.dist-info → massgen-0.1.5.dist-info}/WHEEL +0 -0
  44. {massgen-0.1.4.dist-info → massgen-0.1.5.dist-info}/entry_points.txt +0 -0
  45. {massgen-0.1.4.dist-info → massgen-0.1.5.dist-info}/licenses/LICENSE +0 -0
  46. {massgen-0.1.4.dist-info → massgen-0.1.5.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: massgen
3
- Version: 0.1.4
3
+ Version: 0.1.5
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
@@ -54,6 +54,7 @@ Requires-Dist: openpyxl>=3.1.5
54
54
  Requires-Dist: python-pptx>=1.0.2
55
55
  Requires-Dist: opencv-python>=4.12.0.88
56
56
  Requires-Dist: pypdf2>=3.0.1
57
+ Requires-Dist: mem0ai>=1.0.0
57
58
  Requires-Dist: reportlab>=4.0.0
58
59
  Provides-Extra: dev
59
60
  Requires-Dist: pytest>=7.0.0; extra == "dev"
@@ -121,7 +122,7 @@ Dynamic: license-file
121
122
 
122
123
  <p align="center">
123
124
  <a href="https://www.youtube.com/watch?v=Dp2oldJJImw">
124
- <img src="assets/thumbnail.png" alt="MassGen case study -- Berkeley Agentic AI Summit Question" width="800">
125
+ <img src="docs/source/_static/images/thumbnail.png" alt="MassGen case study -- Berkeley Agentic AI Summit Question" width="800">
125
126
  </a>
126
127
  </p>
127
128
 
@@ -150,7 +151,7 @@ This project started with the "threads of thought" and "iterative refinement" id
150
151
  <details open>
151
152
  <summary><h3>🆕 Latest Features</h3></summary>
152
153
 
153
- - [v0.1.4 Features](#-latest-features-v014)
154
+ - [v0.1.5 Features](#-latest-features-v015)
154
155
  </details>
155
156
 
156
157
  <details open>
@@ -195,16 +196,15 @@ This project started with the "threads of thought" and "iterative refinement" id
195
196
  <summary><h3>🗺️ Roadmap</h3></summary>
196
197
 
197
198
  - Recent Achievements
198
- - [v0.1.4](#recent-achievements-v014)
199
- - [v0.1.3](#recent-achievements-v013)
200
- - [v0.0.3 - v0.1.2](#previous-achievements-v003---v012)
199
+ - [v0.1.5](#recent-achievements-v015)
200
+ - [v0.0.3 - v0.1.4](#previous-achievements-v003---v014)
201
201
  - [Key Future Enhancements](#key-future-enhancements)
202
202
  - Bug Fixes & Backend Improvements
203
203
  - Advanced Agent Collaboration
204
204
  - Expanded Model, Tool & Agent Integrations
205
205
  - Improved Performance & Scalability
206
206
  - Enhanced Developer Experience
207
- - [v0.1.5 Roadmap](#v015-roadmap)
207
+ - [v0.1.6 Roadmap](#v016-roadmap)
208
208
  </details>
209
209
 
210
210
  <details open>
@@ -229,37 +229,49 @@ This project started with the "threads of thought" and "iterative refinement" id
229
229
 
230
230
  ---
231
231
 
232
- ## 🆕 Latest Features (v0.1.4)
232
+ ## 🆕 Latest Features (v0.1.5)
233
233
 
234
- **🎉 Released: October 27, 2025**
234
+ **🎉 Released: October 2025**
235
235
 
236
- **What's New in v0.1.4:**
237
- - **🎨 Multimodal Generation Tools** - Create images, videos, audio, and documents with AI
238
- - **🔒 Binary File Protection** - Automatic security preventing accidental binary file reads
239
- - **🕷️ Crawl4AI Integration** - Intelligent web scraping with LLM-powered extraction
236
+ **What's New in v0.1.5:**
237
+ - **🧠 Long-Term Memory System** - Semantic memory with retrieval across sessions
238
+ - **🗜️ Automatic Context Compression** - Smart compression when approaching token limits
239
+ - **🔄 Memory Sharing for Multi-Turn Conversations** - Agents access knowledge from previous turns
240
240
 
241
241
  **Key Improvements:**
242
- - 6 new generation tools: text-to-image, text-to-video, text-to-speech, text-to-file, image-to-image
243
- - Binary file protection for 40+ file types with smart tool suggestions
244
- - Web crawling with customizable extraction patterns
245
- - Enhanced documentation and automation infrastructure
242
+ - Persistent memory via mem0 integration with vector storage
243
+ - Conversational memory for short-term context tracking
244
+ - Context monitoring with real-time token usage tracking
245
+ - Session management for memory isolation and continuation
246
+ - Qdrant vector database integration for semantic search
246
247
 
247
- **Get Started with v0.1.4:**
248
+ **Get Started with v0.1.5:**
248
249
  ```bash
249
250
  # Install or upgrade from PyPI
250
251
  pip install --upgrade massgen
251
252
 
252
- # Generate an image from text
253
- massgen --config @examples/tools/custom_tools/multimodal_tools/text_to_image_generation_single \
254
- "Please generate an image of a cat in space."
253
+ # Multi-agent collaboration with context compression
254
+ massgen --config @examples/memory/gpt5mini_gemini_context_window_management \
255
+ "Analyze the MassGen codebase comprehensively. Create an architecture document that explains: (1) Core components and their responsibilities, (2) How different modules interact, (3) Key design patterns used, (4) Main entry points and request flows. Read > 30 files to build a complete understanding."
255
256
 
256
- # Generate a video from text
257
- massgen --config @examples/tools/custom_tools/multimodal_tools/text_to_video_generation_single \
258
- "Generate a 4 seconds video with neon-lit alley at night, light rain, slow push-in, cinematic."
257
+ # Research-to-implementation workflow with memory persistence
258
+ # Prerequisites: Start Qdrant and crawl4ai Docker containers
259
+ docker run -d -p 6333:6333 -p 6334:6334 \
260
+ -v $(pwd)/.massgen/qdrant_storage:/qdrant/storage:z qdrant/qdrant
261
+ docker run -d -p 11235:11235 --name crawl4ai --shm-size=1g unclecode/crawl4ai:latest
259
262
 
260
- # Generate documents (PDF, DOCX, etc.)
261
- massgen --config @examples/tools/custom_tools/multimodal_tools/text_to_file_generation_single \
262
- "Please generate a comprehensive technical report about the latest developments in Large Language Models (LLMs)."
263
+ # Session 1 - Research phase:
264
+ massgen --config @examples/memory/gpt5mini_gemini_research_to_implementation \
265
+ "Use crawl4ai to research the latest multi-agent AI papers and techniques from 2025. Focus on: coordination mechanisms, voting strategies, tool-use patterns, and architectural innovations."
266
+
267
+ # Session 2 - Implementation analysis (continue in same session):
268
+ # "Based on the multi-agent research from earlier, which techniques should we implement in MassGen to make it more state-of-the-art? Consider MassGen's current architecture and what would be most impactful."
269
+
270
+ → See [Multi-Turn Persistent Memory Case Study](docs/source/examples/case_studies/multi-turn-persistent-memory.md) for detailed analysis
271
+
272
+ # Test automatic context compression
273
+ massgen --config @examples/memory/single_agent_compression_test \
274
+ "Analyze the MassGen codebase comprehensively. Create an architecture document that explains: (1) Core components and their responsibilities, (2) How different modules interact, (3) Key design patterns used, (4) Main entry points and request flows. Read > 30 files to build a complete understanding."
263
275
  ```
264
276
 
265
277
  → [See full release history and examples](massgen/configs/README.md#release-history--examples)
@@ -481,17 +493,20 @@ MassGen agents can leverage various tools to enhance their problem-solving capab
481
493
 
482
494
  **Supported Built-in Tools by Backend:**
483
495
 
484
- | Backend | Live Search | Code Execution | File Operations | MCP Support | Multimodal (Image/Audio/Video) | Advanced Features |
485
- |---------|:-----------:|:--------------:|:---------------:|:-----------:|:----------:|:-----------------|
486
- | **Azure OpenAI** (NEW in v0.0.10) | ❌ | ❌ | ❌ | ❌ | ❌ | Code interpreter, Azure deployment management |
487
- | **Claude API** | ✅ | ✅ | ✅ | ✅ | | Web search, code interpreter, **MCP integration** |
488
- | **Claude Code** | ✅ | ✅ | ✅ | ✅ | ✅<br/>*Image* | **Native Claude Code SDK, comprehensive dev tools, MCP integration** |
489
- | **Gemini API** | ✅ | ✅ | ✅ | ✅ | ✅<br/>*Image* | Web search, code execution, **MCP integration**|
490
- | **Grok API** | ✅ | ❌ | ✅ | ✅ | | Web search, **MCP integration** |
491
- | **OpenAI API** | ✅ | ✅ | ✅ | ✅ | ✅<br/>*Image* | Web search, code interpreter, **MCP integration** |
492
- | **ZAI API** | ❌ | ❌ | ✅ | ✅ | | **MCP integration** |
493
-
494
- **Note:** Audio/video multimodal support (NEW in v0.0.30) is available through Chat Completions-based providers like OpenRouter and Qwen API. See configuration examples: [`single_openrouter_audio_understanding.yaml`](massgen/configs/basic/single/single_openrouter_audio_understanding.yaml), [`single_qwen_video_understanding.yaml`](massgen/configs/basic/single/single_qwen_video_understanding.yaml)
496
+ | Backend | Live Search | Code Execution | File Operations | MCP Support | Multimodal Understanding | Multimodal Generation | Advanced Features |
497
+ |---------|:-----------:|:--------------:|:---------------:|:-----------:|:------------------------:|:---------------------:|:-----------------|
498
+ | **Azure OpenAI** (NEW in v0.0.10) | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | Code interpreter, Azure deployment management |
499
+ | **Claude API** | ✅ | ✅ | ✅ | ✅ | ✅<br/>*via custom tools* | ✅<br/>*via custom tools* | Web search, code interpreter, **MCP integration** |
500
+ | **Claude Code** | ✅ | ✅ | ✅ | ✅ | ✅<br/>*Image (native)*<br/>*Audio/Video/Docs (custom tools)* | ✅<br/>*via custom tools* | **Native Claude Code SDK, comprehensive dev tools, MCP integration** |
501
+ | **Gemini API** | ✅ | ✅ | ✅ | ✅ | ✅<br/>*Image (native)*<br/>*Audio/Video/Docs (custom tools)* | ✅<br/>*via custom tools* | Web search, code execution, **MCP integration**|
502
+ | **Grok API** | ✅ | ❌ | ✅ | ✅ | ✅<br/>*via custom tools* | ✅<br/>*via custom tools* | Web search, **MCP integration** |
503
+ | **OpenAI API** | ✅ | ✅ | ✅ | ✅ | ✅<br/>*Image (native)*<br/>*Audio/Video/Docs (custom tools)* | ✅<br/>*via custom tools* | Web search, code interpreter, **MCP integration** |
504
+ | **ZAI API** | ❌ | ❌ | ✅ | ✅ | ✅<br/>*via custom tools* | ✅<br/>*via custom tools* | **MCP integration** |
505
+
506
+ **Notes:**
507
+ - **Multimodal Understanding** (NEW in v0.1.3): Analyze images, audio, video, and documents via custom tools using OpenAI GPT-4.1 - works with any backend
508
+ - **Multimodal Generation** (NEW in v0.1.4): Generate images, videos, audio, and documents via custom tools using OpenAI APIs - works with any backend
509
+ - See custom tool configurations: [`understand_image.yaml`](massgen/configs/tools/custom_tools/multimodal_tools/understand_image.yaml), [`text_to_image_generation_single.yaml`](massgen/configs/tools/custom_tools/multimodal_tools/text_to_image_generation_single.yaml)
495
510
 
496
511
  → For detailed backend capabilities and tool integration guides, see [User Guide - Backends](https://docs.massgen.ai/en/latest/user_guide/backends.html)
497
512
 
@@ -1084,6 +1099,10 @@ All sessions are automatically logged with detailed information for debugging an
1084
1099
 
1085
1100
  To see how MassGen works in practice, check out these detailed case studies based on real session logs:
1086
1101
 
1102
+ **Featured:**
1103
+ - [**Multi-Turn Persistent Memory**](docs/source/examples/case_studies/multi-turn-persistent-memory.md) - Research-to-implementation workflow demonstrating memory system (v0.1.5) | [📹 Watch Demo](https://youtu.be/wWxxFgyw40Y)
1104
+
1105
+ **All Case Studies:**
1087
1106
  - [**MassGen Case Studies**](docs/source/examples/case_studies/README.md)
1088
1107
  - [**Case Studies Documentation**](https://docs.massgen.ai/en/latest/examples/case_studies.html) - Browse case studies online
1089
1108
 
@@ -1096,49 +1115,63 @@ MassGen is currently in its foundational stage, with a focus on parallel, asynch
1096
1115
 
1097
1116
  ⚠️ **Early Stage Notice:** As MassGen is in active development, please expect upcoming breaking architecture changes as we continue to refine and improve the system.
1098
1117
 
1099
- ### Recent Achievements (v0.1.4)
1118
+ ### Recent Achievements (v0.1.5)
1119
+
1120
+ **🎉 Released: October 2025**
1121
+
1122
+ #### Memory System
1123
+ - **PersistentMemory**: Long-term semantic memory storage via mem0 integration with fact extraction and retrieval across sessions
1124
+ - **ConversationMemory**: Short-term verbatim message tracking for active conversation context
1125
+ - **Automatic Context Compression**: Smart compression when approaching token limits with configurable thresholds (trigger_threshold, target_ratio)
1126
+ - **Cross-Agent Memory Sharing**: Agents share memory with turn-aware filtering to prevent temporal information leakage
1127
+ - **Context Monitoring**: Real-time token usage tracking with automatic compression triggers
1128
+ - **Session Management**: Memory isolation and continuation across runs with session naming support
1129
+ - **Qdrant Integration**: Vector database support for efficient semantic search in both server and local modes
1130
+ - **Configurable Memory Providers**: Support for OpenAI, Anthropic, Groq, and other mem0-compatible LLM and embedding providers
1131
+
1132
+ #### Memory Configuration
1133
+ - **Global and Per-Agent Control**: Enable/disable memory at system or individual agent level
1134
+ - **Compression Settings**: Configurable trigger thresholds and target ratios for context window management
1135
+ - **Retrieval Configuration**: Customizable retrieval limits and smart filtering to exclude recent messages
1136
+ - **Memory Persistence**: Session continuation with named sessions for cross-session memory access
1137
+
1138
+ #### Configuration Files
1139
+ - `gpt5mini_gemini_context_window_management.yaml` - Multi-agent with automatic context compression
1140
+ - `gpt5mini_gemini_research_to_implementation.yaml` - Research-to-implementation workflow with memory
1141
+ - `gpt5mini_high_reasoning_gemini.yaml` - High reasoning agents with memory integration
1142
+ - `gpt5mini_gemini_baseline_research_to_implementation.yaml` - Baseline research workflow for comparison
1143
+ - `single_agent_compression_test.yaml` - Single agent testing context compression behavior
1100
1144
 
1101
- **🎉 Released: October 27, 2025**
1145
+ #### Documentation
1146
+ - Complete memory system user guide: `docs/source/user_guide/memory.rst`
1147
+ - Design decisions documentation explaining architectural choices
1148
+ - API reference for PersistentMemory, ConversationMemory, and ContextMonitor classes
1149
+ - Comprehensive troubleshooting guide and monitoring instructions
1102
1150
 
1103
- #### Multimodal Generation Tools
1104
- - **Text-to-Image**: `text_to_image_generation` tool creates images from text prompts via DALL-E API
1105
- - **Text-to-Video**: `text_to_video_generation` tool generates videos from text descriptions
1106
- - **Text-to-Speech**: `text_to_speech_continue_generation` and `text_to_speech_transcription_generation` tools for audio generation and transcription
1107
- - **Text-to-File**: `text_to_file_generation` tool creates documents in PDF, DOCX, XLSX, and PPTX formats
1108
- - **Image-to-Image**: `image_to_image_generation` tool transforms existing images
1151
+ #### Testing Infrastructure
1152
+ - Memory test suite: `test_agent_memory.py`, `test_conversation_memory.py`, `test_orchestrator_memory.py`, `test_persistent_memory.py`
1109
1153
 
1110
- #### Binary File Protection
1111
- - **Automatic Blocking**: `PathPermissionManager` now prevents text-based read tools from accessing binary files
1112
- - **Protected File Types**: 40+ extensions including images (.jpg, .png), videos (.mp4, .avi), audio (.mp3, .wav), archives (.zip, .tar), executables (.exe, .dll), and Office documents (.pdf, .docx, .xlsx, .pptx)
1113
- - **Intelligent Guidance**: Error messages automatically suggest appropriate specialized tools (e.g., "use understand_image tool" for .jpg files)
1114
- - **Test Coverage**: `test_binary_file_blocking.py`
1154
+ ### Previous Achievements (v0.0.3 - v0.1.4)
1115
1155
 
1116
- #### Web Scraping Capabilities
1117
- - **Crawl4AI Tool**: `crawl4ai_tool` enables intelligent web scraping with LLM-powered content extraction and customizable patterns
1156
+ **Multimodal Generation Tools (v0.1.4)**: Create images from text via DALL-E API, generate videos from descriptions, text-to-speech with audio transcription support, document generation for PDF/DOCX/XLSX/PPTX formats, image transformation capabilities for existing images
1118
1157
 
1119
- #### Documentation & Infrastructure
1120
- - **Generation Tools**: 8 multimodal generation configurations
1121
- - `text_to_image_generation_single.yaml` and `text_to_image_generation_multi.yaml`
1122
- - `text_to_video_generation_single.yaml` and `text_to_video_generation_multi.yaml`
1123
- - `text_to_speech_generation_single.yaml` and `text_to_speech_generation_multi.yaml`
1124
- - `text_to_file_generation_single.yaml` and `text_to_file_generation_multi.yaml`
1125
- - **Web Scraping**: `crawl4ai_example.yaml` for Crawl4AI integration
1158
+ **Binary File Protection (v0.1.4)**: Automatic blocking prevents text tools from accessing 40+ binary file types including images, videos, audio, archives, and Office documents, intelligent error messages guide users to appropriate specialized tools for binary content
1126
1159
 
1127
- ### Previous Achievements (v0.0.3 - v0.1.3)
1160
+ **Crawl4AI Integration (v0.1.4)**: Intelligent web scraping with LLM-powered content extraction and customizable extraction patterns for structured data retrieval from websites
1128
1161
 
1129
- ✅ **Post-Evaluation Workflow (v0.1.3)**: `PostEvaluationToolkit` class with submit tool for confirming final answers and restart tool for orchestration restart with feedback, winning agent evaluates answer before submission, universal backend support (Claude, Response API, Chat Completions), opt-in via `enable_post_evaluation_tools` parameter
1162
+ ✅ **Post-Evaluation Workflow (v0.1.3)**: Winning agents evaluate their own answers before submission with submit and restart capabilities, supports answer confirmation and orchestration restart with feedback across all backends
1130
1163
 
1131
- ✅ **Multimodal Understanding Tools (v0.1.3)**: `understand_image` for PNG/JPEG analysis, `understand_audio` for WAV/MP3 transcription, `understand_video` for MP4/AVI frame extraction, `understand_file` for PDF/DOCX processing, cross-backend support via OpenAI GPT-4.1, structured JSON output, configurations: `understand_image.yaml`, `understand_audio.yaml`, `understand_video.yaml`, `understand_file.yaml`
1164
+ ✅ **Multimodal Understanding Tools (v0.1.3)**: Analyze images, transcribe audio, extract video frames, and process documents (PDF/DOCX/XLSX/PPTX) with structured JSON output, works across all backends via OpenAI GPT-4.1 integration
1132
1165
 
1133
- ✅ **Docker Sudo Mode (v0.1.3)**: `use_sudo` parameter for privileged Docker execution, system-level command support in containers, enhanced security documentation, test coverage in `test_code_execution.py`
1166
+ ✅ **Docker Sudo Mode (v0.1.3)**: Privileged command execution in Docker containers for system-level operations requiring elevated permissions
1134
1167
 
1135
- ✅ **Intelligent Planning Mode (v0.1.2)**: Automatic question analysis determining operation irreversibility via `_analyze_question_irreversibility()` in orchestrator, selective tool blocking with `set_planning_mode_blocked_tools()` and `is_mcp_tool_blocked()` methods, read-only MCP operations during coordination with write operations blocked, zero-configuration transparent operation, multi-workspace support, comprehensive tests in `test_intelligent_planning_mode.py`, complete guide in `docs/dev_notes/intelligent_planning_mode.md`
1168
+ ✅ **Intelligent Planning Mode (v0.1.2)**: Automatic question analysis determining operation irreversibility via `_analyze_question_irreversibility()` in orchestrator, selective tool blocking with `set_planning_mode_blocked_tools()` and `is_mcp_tool_blocked()` methods, read-only MCP operations during coordination with write operations blocked, zero-configuration transparent operation, multi-workspace support
1136
1169
 
1137
- ✅ **Model Updates (v0.1.2)**: Claude 4.5 Haiku model `claude-haiku-4-5-20251001`, reorganized Claude model priorities with `claude-sonnet-4-5-20250929` default, Grok web search fix with `_add_grok_search_params()` method for proper `extra_body` parameter handling, 5 updated planning mode configurations in `configs/tools/planning/`, updated `three_agents_default.yaml` with Grok-4-fast
1170
+ ✅ **Model Updates (v0.1.2)**: Claude 4.5 Haiku model `claude-haiku-4-5-20251001`, reorganized Claude model priorities with `claude-sonnet-4-5-20250929` default, Grok web search fix with `_add_grok_search_params()` method for proper `extra_body` parameter handling
1138
1171
 
1139
1172
  ✅ **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
1140
1173
 
1141
- ✅ **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
1174
+ ✅ **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 all backends
1142
1175
 
1143
1176
  ✅ **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
1144
1177
 
@@ -1238,21 +1271,21 @@ MassGen is currently in its foundational stage, with a focus on parallel, asynch
1238
1271
 
1239
1272
  We welcome community contributions to achieve these goals.
1240
1273
 
1241
- ### v0.1.5 Roadmap
1274
+ ### v0.1.6 Roadmap
1242
1275
 
1243
- Version 0.1.5 focuses on Docker integration for MCP tools and backend code refactoring:
1276
+ Version 0.1.6 focuses on backend code refactoring for improved maintainability and developer experience:
1244
1277
 
1245
- #### Required Features
1246
- - **Running MCP Tools in Docker**: Containerized execution environment for MCP tools with enhanced security and isolation
1247
- - **Backend Code Refactoring**: Major code refactoring for improved maintainability and developer experience
1278
+ #### Planned Features
1279
+ - **Backend Code Refactoring**: Major code refactoring for improved maintainability and developer experience with better code organization, modularity, and architectural improvements
1248
1280
 
1249
1281
  Key technical approach:
1250
- - **Docker Integration**: Secure execution of third-party MCP tools in isolated Docker containers with resource limits and network isolation
1251
- - **Backend Improvements**: Enhanced code organization, modularity, and architectural improvements for better maintainability
1282
+ - **Code Architecture**: Enhanced code organization with improved modularity and separation of concerns
1283
+ - **Developer Experience**: Simplified backend extension points, improved API clarity, better error handling and debugging support
1284
+ - **Quality Assurance**: Comprehensive testing to ensure no functionality regressions
1252
1285
 
1253
- **Target Release**: October 30, 2025 (Wednesday @ 9am PT)
1286
+ **Target Release**: November 1, 2025 (Friday @ 9am PT)
1254
1287
 
1255
- For detailed milestones and technical specifications, see the [full v0.1.5 roadmap](ROADMAP_v0.1.5.md).
1288
+ For detailed milestones and technical specifications, see the [full v0.1.6 roadmap](ROADMAP_v0.1.6.md).
1256
1289
 
1257
1290
  ---
1258
1291
 
@@ -1,12 +1,12 @@
1
- massgen/__init__.py,sha256=Y3QKga-0ROs3uzv-pD1qOQhJeYGeUR1sW0W7vCyb3NI,7974
1
+ massgen/__init__.py,sha256=FVfyqtltRkkz28-ckPTLKvNAPCLV6tPss8DqaZ_moA8,7974
2
2
  massgen/agent_config.py,sha256=wC4_V858My4yDvajLDqo0A84hSNqzj9kEU7v_9fl6RQ,33136
3
- massgen/chat_agent.py,sha256=Oa1yv_yzfe2twbeqCM9LGzVOXA93p13RTE35Ks-XCpk,18903
4
- massgen/cli.py,sha256=3VNtpflBKfTSrr1Dj07iFMMH-YhnoCDcJWWlmJ2vNW0,114861
3
+ massgen/chat_agent.py,sha256=YYvU60wwjY3upOePVS27-3MPlkME7HzrYCx8B772OSo,37698
4
+ massgen/cli.py,sha256=dLvvijXB-WdquJTK2NqGkA7BVBJ2wkn-peFsYHEVVZ8,130307
5
5
  massgen/config_builder.py,sha256=J881XcXqUwX_fGNAahGK0RG-zJbkWHYS-O-C8y6rWxA,142182
6
6
  massgen/coordination_tracker.py,sha256=_r8Man3uomovpXKHrlc4YBI030tkuavYQ-6fEk2JsfM,28201
7
7
  massgen/logger_config.py,sha256=BalZOpvGyeejyI5Q8e8aa9OG3dvYf7VaR-k7u9MLZBg,25457
8
8
  massgen/message_templates.py,sha256=yVtynIjwn4bG6bUJ5uAW174LO6-w7jYbG07KCJTDpcY,55900
9
- massgen/orchestrator.py,sha256=oRj_JHNZqKrM3pWkyrQawqPyLL2HujepGc3q5E8tu88,167064
9
+ massgen/orchestrator.py,sha256=6QNicDee7A5BY5BcaLKI0RWFtStzDEfgvkwOa4yJ_lU,175696
10
10
  massgen/utils.py,sha256=dWsLMoRRCwBtzDe8vJQ8mfKDTpyLqstC1aH8L4j2clE,3077
11
11
  massgen/adapters/__init__.py,sha256=lYDbplvbiRfXup5e_Q3GzvGujP3V0vqElEJqVfQog2Q,726
12
12
  massgen/adapters/ag2_adapter.py,sha256=71I1acslxIrTPDWTkiTICsp2lyRrrc_F4SwQqa2K_vY,18465
@@ -55,7 +55,7 @@ massgen/backend/docs/OPENAI_response_streaming.md,sha256=ees0GpokNKgg_aAuAODJifD
55
55
  massgen/backend/docs/inference_backend.md,sha256=NNxvh6JWc2BPWLQrAJKXsXAyvggT-_KRHmboulYNw7Y,6372
56
56
  massgen/backend/docs/permissions_and_context_files.md,sha256=PWWbSHlLN51Icqz5FMRA68Xm0dkl65r84pi3AKcL1lQ,40516
57
57
  massgen/configs/BACKEND_CONFIGURATION.md,sha256=eJL8dBpGnb3o705R0Uk5QbWanKG9C30jFd8U3gqlbeE,13051
58
- massgen/configs/README.md,sha256=-ppvDyrZiedSfG7u6SKEPJRPx6KDwBcbKBlwBpXM-1k,32527
58
+ massgen/configs/README.md,sha256=sciV_NIhxs89MITjrBfSWXoIZ1Bb5ixe0fI-mNE56DY,35369
59
59
  massgen/configs/ag2/ag2_case_study.yaml,sha256=kiQanWKY3VyZD6Sl-0ZBMOcWoOWU2AF26IJKKhKak4k,767
60
60
  massgen/configs/ag2/ag2_coder.yaml,sha256=jtIBULpg55BthnQ-YRXrJ1xG7Q_IqK-1N5qCitC_A_4,1131
61
61
  massgen/configs/ag2/ag2_coder_case_study.yaml,sha256=3mE5mq9zU7V6RZ_XsgiA_-4S04zCNCAYPH7FmTE1suE,1273
@@ -101,6 +101,11 @@ massgen/configs/debug/code_execution/command_filtering_whitelist.yaml,sha256=Eix
101
101
  massgen/configs/debug/code_execution/docker_verification.yaml,sha256=fx4CiJM1z7lptY7efOwI8ZCuiYOUgeGnZkcEm6pLJe0,1495
102
102
  massgen/configs/docs/DISCORD_MCP_SETUP.md,sha256=T1RhdPV8d6-cnVts-zvz-zoxv2xOtzz8e6eJthOpC2c,7377
103
103
  massgen/configs/docs/TWITTER_MCP_ENESCINAR_SETUP.md,sha256=j_BRC5b6IXj8j8lkmi040DYGdl00XHtLD6_XiW3G0Oo,2657
104
+ massgen/configs/memory/gpt5mini_gemini_baseline_research_to_implementation.yaml,sha256=uYE7sqTu4ae-FLztw6ZZG4X-wwrcQnd1e51Q9DXUw5E,3665
105
+ massgen/configs/memory/gpt5mini_gemini_context_window_management.yaml,sha256=8onQ_070HOT1iBzJL0EI6AAXxlMdPTe3aanTV9WmUtM,8134
106
+ massgen/configs/memory/gpt5mini_gemini_research_to_implementation.yaml,sha256=KkdxtyfrKmqi9A_uL3ghANsxjht7RWLk3hubW7bqZZc,4337
107
+ massgen/configs/memory/gpt5mini_high_reasoning_gemini.yaml,sha256=xC0nYXEhxQbgPtOOpMw5evcmifGYLaHvOlv3i8kM-7k,3919
108
+ massgen/configs/memory/single_agent_compression_test.yaml,sha256=pL9LOLa3PL3PlNs6dYEcYE3uOVW6081vq6B8z8PvRGw,1976
104
109
  massgen/configs/providers/azure/azure_openai_multi.yaml,sha256=9aEPTv1dyu26fCC6MA_gzKnG_MehNE_cdT3r6t5Uccc,831
105
110
  massgen/configs/providers/azure/azure_openai_single.yaml,sha256=r_E7hwtGP5goWro6VH02DMW1Q1kOO3Z2tzLK5C3L9y0,642
106
111
  massgen/configs/providers/claude/claude.yaml,sha256=IOvxJ2s4_RC5zWRk3sBsiVwaL2XGhShfjJJ_mhCHzZ0,340
@@ -169,6 +174,7 @@ massgen/configs/tools/custom_tools/qwen_local_custom_tool_example_no_path.yaml,s
169
174
  massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_mcp_example.yaml,sha256=zfvh9RNycLiPAauQmw0_qEAO2qaHBAf-sAvYpKiP87s,1609
170
175
  massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_wrong_mcp_example.yaml,sha256=73JeuKxgCHz6nkquj5mANDcTBkW8Cg1zjCVtUGqYdJM,1587
171
176
  massgen/configs/tools/custom_tools/qwen_local_wrong_custom_tool_with_mcp_example.yaml,sha256=ruGn-4X-ObShSY3ZqtTSxee6_TmBniJRKF7I_3to4CM,1561
177
+ massgen/configs/tools/custom_tools/multimodal_tools/playwright_with_img_understanding.yaml,sha256=V4K3I7sv1AVWH_8skm_ZntCAny21MSu5nvIbWALjg3w,3594
172
178
  massgen/configs/tools/custom_tools/multimodal_tools/text_to_file_generation_multi.yaml,sha256=RcZ2oJHPdsCxH2gFZOyXTZRFuuxCPtVJRnpPxjXPmKM,3334
173
179
  massgen/configs/tools/custom_tools/multimodal_tools/text_to_file_generation_single.yaml,sha256=Jl9ixbRi9LvdnSia6zOIJ5SJJr_B57WYfI5nlUum1Ko,1608
174
180
  massgen/configs/tools/custom_tools/multimodal_tools/text_to_image_generation_multi.yaml,sha256=1LYKeh5EXFgECbGe2QsQFRN4OsZAiAC-Z02iio3gheo,1946
@@ -181,6 +187,7 @@ massgen/configs/tools/custom_tools/multimodal_tools/understand_audio.yaml,sha256
181
187
  massgen/configs/tools/custom_tools/multimodal_tools/understand_file.yaml,sha256=WHXS0vdUTYBojBOP-ZenwJIv85Z5LVEadCK08CMvnnc,1366
182
188
  massgen/configs/tools/custom_tools/multimodal_tools/understand_image.yaml,sha256=i67DM3NoOPmWKGrW_lIno8vEFZwD3HEBFfZA9kOE4hQ,1316
183
189
  massgen/configs/tools/custom_tools/multimodal_tools/understand_video.yaml,sha256=5-KLpYnVsJLOinv0-z1wUh1zTB9NltxfaNqw-aNOx9k,1350
190
+ massgen/configs/tools/custom_tools/multimodal_tools/understand_video_example.yaml,sha256=LfdJxppclGnz764y-9BR_d0ksmUA89Y5DAeqs6ch1og,1664
184
191
  massgen/configs/tools/custom_tools/multimodal_tools/youtube_video_analysis.yaml,sha256=ih8hHLjETAOreye6HEbxc6AntCeUSQ2-uf01lyjOeg4,2102
185
192
  massgen/configs/tools/filesystem/cc_gpt5_gemini_filesystem.yaml,sha256=eCnljU999bu5GG7Sl1ANdkojxnjU1vvQltmtcMjpiCM,831
186
193
  massgen/configs/tools/filesystem/claude_code_context_sharing.yaml,sha256=MvNtesvnJC2nvq5cXkCzwt7oR2ApeO3xtmrZzy8Jjks,3060
@@ -275,6 +282,22 @@ massgen/mcp_tools/docs/client.md,sha256=5xLWgJXzXTCVf3Aa4c96HJmr5l5ik413ZIxchIBo
275
282
  massgen/mcp_tools/docs/config_validator.md,sha256=E22jptaS5FXWiERmq_k9AgPMCRUVVquCH3pUadg5XLo,15729
276
283
  massgen/mcp_tools/docs/exceptions.md,sha256=8pNfzHHhQ6t_Ife9Hh3dsS2-E3_JlGvzvBcJnD4bqKY,34229
277
284
  massgen/mcp_tools/docs/security.md,sha256=qCB3iVk-WH7Mppe0Ra9-w2_Rip0jrNiDM0OtCHXTcFQ,26184
285
+ massgen/memory/README.md,sha256=nI168IWvg_totfPnXw8CiPtOGcMwZwz13wLlSoDoJPY,7538
286
+ massgen/memory/__init__.py,sha256=MmtPbiQe0jwbqyBLptQGmq78FppWa3ptpef2Et4JK1w,789
287
+ massgen/memory/_base.py,sha256=l1TXptDMl960HXcNDfiyD2aENB4IoW_pM4-zNhG7PPs,5783
288
+ massgen/memory/_compression.py,sha256=Qdd1ED6Lazx3-o1Dt3iUfAGDdmeIbn-odcwaz9I_Shk,8300
289
+ massgen/memory/_context_monitor.py,sha256=EIBibihvYtg3gKdMexzqCJsLbHoA6qApa_zy4tQ1LZU,7611
290
+ massgen/memory/_conversation.py,sha256=arLvoRfL5bylIwOFKDuZnXVi3p0nCvCqAPlc5nAH-GQ,8189
291
+ massgen/memory/_fact_extraction_prompts.py,sha256=e2Jmh8uDXAFNblIsYIRhcoh1ORzOb399sr3k8PTuM4s,14924
292
+ massgen/memory/_mem0_adapters.py,sha256=JLbC6dD2NA98Ci7VuHzc6hcuMjOYQLLIsuG8r2oGrpg,8871
293
+ massgen/memory/_persistent.py,sha256=P2kciQTa5sZRlZ1edcxsVuKgo5u8lBFDiKWGefucUOg,27884
294
+ massgen/memory/docker-compose.qdrant.yml,sha256=eE8voIsOrgSJ_jWuvJ492Crz17sKgIoD13XKZpqr7Io,935
295
+ massgen/memory/examples.py,sha256=Z089ZtRRHv01kX1v35-PG9IenbEQAGA4dVAZaHD81Rc,7552
296
+ massgen/memory/docs/DESIGN.md,sha256=vM9GuWqhxkLRICZ7UyPpcxXL1N-pdvr-r1H9j5ANb34,12885
297
+ massgen/memory/docs/QUICKSTART.md,sha256=ItQ10tHiC9EsgtKo3vIw4LlXSuVGzfvjmgGgPALJkMY,10438
298
+ massgen/memory/docs/SUMMARY.md,sha256=LdMkesNPJTC2zeJiktkeinyK9iTwOXX8GMGniAQLHtM,9485
299
+ massgen/memory/docs/agent_use_memory.md,sha256=pDyd_EHD9AY3D4SjhEYXUrTNSQBTJsiBGLGmgqlX78M,13547
300
+ massgen/memory/docs/orchestrator_use_memory.md,sha256=eKrDZUmqLrd8EjGObdYOuML-wtJhkpRPSqL9d7QilUs,22853
278
301
  massgen/stream_chunk/__init__.py,sha256=fc8Jn-Ow2ZKFWJR72DRA6r65_CtViM9NLvWGT-TrhU4,898
279
302
  massgen/stream_chunk/base.py,sha256=NubSk62R_ngr13IBTqz6HACnfh-LAsmkgzZ93nkj-fM,2810
280
303
  massgen/stream_chunk/multimodal.py,sha256=ojaO-1EFnhA0H94YczxmkP6f0XV3lvTlb62Lc-JgltI,7916
@@ -284,6 +307,7 @@ massgen/tests/custom_tools_example.py,sha256=-f6_iGfEipznkKVKdzZwgGyQXw9JzOm9Lwc
284
307
  massgen/tests/mcp_test_server.py,sha256=hx1dKMxFufzynG6sCd2117ma0ywPy9hiVjkUsAxtsP8,5660
285
308
  massgen/tests/multi_turn_conversation_design.md,sha256=q9vMFNZ-LOTqZdI8oOWAQjPIY773s_mOXptq582Pk6E,7501
286
309
  massgen/tests/multiturn_llm_input_analysis.md,sha256=Xw8PX0oAIbF_zjlRXCA62EpX1xAOGUq9brYl3UkyAR0,6997
310
+ massgen/tests/test_agent_memory.py,sha256=bTTPIkyecYRm7yu9f5080xxQcdDIKW45EFCj-RrP4Us,18541
287
311
  massgen/tests/test_azure_openai_backend.py,sha256=a9JFdCnDDkG_PKjLxN8QqBwyzP_aNNlP543iST2pyPw,6663
288
312
  massgen/tests/test_backend_capabilities.py,sha256=MXIO-4ia07a-95JbyyBeIlz79B-eResn8ej2fpiX6II,10966
289
313
  massgen/tests/test_backend_event_loop_all.py,sha256=vfTlD2spAYVITGgwQzntFmvN_W10sSqO0XGpgESmmNQ,5565
@@ -297,6 +321,7 @@ massgen/tests/test_claude_code_orchestrator.py,sha256=1bFLHQSgPqw2ecPjoZpsSg5lw8
297
321
  massgen/tests/test_cli_backends.py,sha256=6KPYnNgwGYRCGIXJTNWBCBHK1w8ylrBWFqt_HBWlelk,5918
298
322
  massgen/tests/test_code_execution.py,sha256=fbXNg7NeUpuodpixeR7WhNAAtk9Je1VLwQQfw6N3CYU,30099
299
323
  massgen/tests/test_config_builder.py,sha256=OcDfeVcKp_7zUruujNwKkpf0pwQ5f5ZzrgnHQYiEA2g,17781
324
+ massgen/tests/test_conversation_memory.py,sha256=o_wrjvVYB113Y24JF0s6n1Re51ly1GKDG-1LhDxlyqk,11398
300
325
  massgen/tests/test_custom_tools.py,sha256=zUOjlZdT1eC7jgx28Z3TfzUTqFvAmRumK2Uv-lq1f3E,12905
301
326
  massgen/tests/test_external_agent_backend.py,sha256=1ImeUo0tQIdaG7ASn1X-rkuHBuAUrmk3d4l8U4LaJHI,3948
302
327
  massgen/tests/test_final_presentation_fallback.py,sha256=aMG9-6TjWseGPvY_zHOiKpdi5I4jHTMUEURaIu-5oNw,8985
@@ -310,7 +335,9 @@ massgen/tests/test_message_context_building.py,sha256=8AXcVDtv0R8uI-1PVLwYVFSWP-
310
335
  massgen/tests/test_multimodal_size_limits.py,sha256=y5UAb48PqgSnsB467GRU50A0Rmi8f-hr6FpEGU40BCk,14968
311
336
  massgen/tests/test_orchestration_restart.py,sha256=YqYXokEdQuzC9u8xFAkSMSbDKtRUk2Vu2eoKxt66iOk,7239
312
337
  massgen/tests/test_orchestrator_final_presentation.py,sha256=Yt0-IACu0PGe4IpoGW7mpBDNdyFW_6W5Q1Hzry3gAys,1238
338
+ massgen/tests/test_orchestrator_memory.py,sha256=SjzvrvYLnpaU9U5mmOy8ZD5FZ67gbUBZg1qglXqG9kI,22162
313
339
  massgen/tests/test_path_permission_manager.py,sha256=DjOQvhUE6Tg4UGGJzl8AwnFnlvQgJf2WaUVvebkK8UA,88275
340
+ massgen/tests/test_persistent_memory.py,sha256=W9qiKEapoTLYExGZ2xALMQtfHDjVeuacCA4mwbMVpTo,15037
314
341
  massgen/tests/test_rich_terminal_display.py,sha256=r-SfoWf8T1P-cwZTnbVp3AYuxr-98h0K7XqI8Y5tcR4,12157
315
342
  massgen/tests/test_timeout.py,sha256=35Lecz6WHPZXN_B1ru-XYQQhRr-Npx_LoqemsTQk7sE,5082
316
343
  massgen/tests/test_tools.py,sha256=GnJNNB-cZj142txDwJKzN0zUKd0wb_p7lRWNJnB0qkc,3594
@@ -318,8 +345,12 @@ massgen/tests/test_v3_3agents.py,sha256=YARcuU3bc61BJhgMlojJ-AaHyIC__C31KzPf5W9f
318
345
  massgen/tests/test_v3_simple.py,sha256=MCJkqnCldRmPhZF0IMvWyjbO9Xjz-_uv1rZqtW2kniw,6544
319
346
  massgen/tests/test_v3_three_agents.py,sha256=t76yek3DRFJpgs4hiuc9BT5VKyU_RwgHcthZxjM8otM,9266
320
347
  massgen/tests/test_v3_two_agents.py,sha256=G3WJuMdCjMdp0WItur48IGJ69B4HBs5RhpDjYJayzHo,5768
348
+ massgen/tests/memory/test_agent_compression.py,sha256=1OD2sXrfEGm7NIzIYAo4lMOnSleAEacaAlN7Qn3Kac8,5707
349
+ massgen/tests/memory/test_context_window_management.py,sha256=VnuEykGYZnS_OMVX4LJbHOxvq6wqGKGSY9WrLfqzTWw,10948
350
+ massgen/tests/memory/test_force_compression.py,sha256=NBo52hWJOdBLvQsPAh812QMAOeTgC52zIA3mmHS_mY0,5749
351
+ massgen/tests/memory/test_simple_compression.py,sha256=8WFSucWaHkHRA8lMJ5jm1Ki6ypHoVI4UXIaxFYLah1g,4889
321
352
  massgen/token_manager/__init__.py,sha256=SxFK64M3S69E51d1M37pq38O39mIZp-9TMxAspwR3wY,143
322
- massgen/token_manager/token_manager.py,sha256=rp1DY6KYLK9QSaAZh6IBlAwpTgwSr7PRWxd-9Ifh4bs,16586
353
+ massgen/token_manager/token_manager.py,sha256=5S5uzLw2Zec9P3bYA1lPNluxgFg_wi6W151pGuHfb-Y,16903
323
354
  massgen/tool/README.md,sha256=wauBHnWMUIQiGendrYUeUFW7LesRznGpJx9TR5qJpEU,24365
324
355
  massgen/tool/__init__.py,sha256=YrLYvYDtVcTKs6WtwF4rtR90uoLGMmXXTedTq9GiIY4,1114
325
356
  massgen/tool/_async_helpers.py,sha256=SyfWZ_fLLq2knwM5j4TaYVV1cTWElxWRSzH1FkapcL8,2411
@@ -357,6 +388,9 @@ massgen/tool/workflow_toolkits/base.py,sha256=VcT6JOhtusYTwpc6FOdgG2Z-99ImsMNKud
357
388
  massgen/tool/workflow_toolkits/new_answer.py,sha256=x2KfMs0rM9_sJmIVYQf8Acq_NNXMIIFrmZBRFpP6y9I,4482
358
389
  massgen/tool/workflow_toolkits/post_evaluation.py,sha256=Zrp0sSdiiMm4IfiublcUAM-vMg-Duqp5WwJmVH9Rvng,9040
359
390
  massgen/tool/workflow_toolkits/vote.py,sha256=u-Tqr45OjkoaNajriLUYeQZnM69Am0M8HR-_yrDpasA,6106
391
+ massgen/tools/__init__.py,sha256=e3V3j0F68KDQDdpkn6KUsbHds_asbfC0nVWVgmhnwjI,204
392
+ massgen/tools/_planning_mcp_server.py,sha256=iWKGTl9XUwjlv3s44V945LwBpMDzvxVAfU7Z3Mt09Qg,16343
393
+ massgen/tools/planning_dataclasses.py,sha256=srCMAi3-LGPjVSJ2rHUQvI-IAp32PEXE7evlG7MAGPw,14021
360
394
  massgen/v1/README.md,sha256=37ZEbNR0O5IcdqQXkqtvNCpmVX1Z_dO4HGcKreaP-0E,13631
361
395
  massgen/v1/__init__.py,sha256=hZUuhjtGlLJ-QW4Ty2V4IMlaoUB5oP0TSl0XeuCoWqU,2733
362
396
  massgen/v1/agent.py,sha256=toEN1JM1pop4ZqZj2zqCCJJtxHtMUPjTQgEI4hvnh8s,25341
@@ -377,9 +411,9 @@ massgen/v1/examples/fast-4o-mini-config.yaml,sha256=t7zmN8sWQrrWivjaBB9w_WHFDnU-
377
411
  massgen/v1/examples/fast_config.yaml,sha256=BDBCpSYJPzTZi9vAEGsCZ3lt3JV25RN-4Nf_17JAhUU,846
378
412
  massgen/v1/examples/production.yaml,sha256=hrNqzOqlQG1sL-5U8ZlA8QpCwGSoiCtqMu7Mi2gOd9s,2002
379
413
  massgen/v1/examples/single_agent.yaml,sha256=h8ysGIwPjvgnpRxTcBqw5nBz5D2MTXI_Ygdn4D9RdIA,1256
380
- massgen-0.1.4.dist-info/licenses/LICENSE,sha256=_r2TwhSv0GcpGeIKfwbz9z2qzOI62FHCfgSfnZ1z2fc,11386
381
- massgen-0.1.4.dist-info/METADATA,sha256=m3amrQv6_rRc2F9cr8bhYoPHz5rNp6Xa2h-9UjfevFg,63126
382
- massgen-0.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
383
- massgen-0.1.4.dist-info/entry_points.txt,sha256=On6OV7swWO0StsAXeOri3MzmuxhO9C-PUvKW-5pJ6gA,49
384
- massgen-0.1.4.dist-info/top_level.txt,sha256=jm8ZxEGdkjsh8aPWXvCpnexL_S2ZRkFeT9vl6vIm_3I,8
385
- massgen-0.1.4.dist-info/RECORD,,
414
+ massgen-0.1.5.dist-info/licenses/LICENSE,sha256=_r2TwhSv0GcpGeIKfwbz9z2qzOI62FHCfgSfnZ1z2fc,11386
415
+ massgen-0.1.5.dist-info/METADATA,sha256=SRbvef4OIuyrgINJNRR7FW2UB7XK1aBpGWkkMekxYb4,65974
416
+ massgen-0.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
417
+ massgen-0.1.5.dist-info/entry_points.txt,sha256=On6OV7swWO0StsAXeOri3MzmuxhO9C-PUvKW-5pJ6gA,49
418
+ massgen-0.1.5.dist-info/top_level.txt,sha256=jm8ZxEGdkjsh8aPWXvCpnexL_S2ZRkFeT9vl6vIm_3I,8
419
+ massgen-0.1.5.dist-info/RECORD,,