massgen 0.1.4__py3-none-any.whl → 0.1.6__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.
- massgen/__init__.py +1 -1
- massgen/backend/base_with_custom_tool_and_mcp.py +453 -23
- massgen/backend/capabilities.py +39 -0
- massgen/backend/chat_completions.py +111 -197
- massgen/backend/claude.py +210 -181
- massgen/backend/gemini.py +1015 -1559
- massgen/backend/grok.py +3 -2
- massgen/backend/response.py +160 -220
- massgen/chat_agent.py +340 -20
- massgen/cli.py +399 -25
- massgen/config_builder.py +20 -54
- massgen/config_validator.py +931 -0
- massgen/configs/README.md +95 -10
- massgen/configs/memory/gpt5mini_gemini_baseline_research_to_implementation.yaml +94 -0
- massgen/configs/memory/gpt5mini_gemini_context_window_management.yaml +187 -0
- massgen/configs/memory/gpt5mini_gemini_research_to_implementation.yaml +127 -0
- massgen/configs/memory/gpt5mini_high_reasoning_gemini.yaml +107 -0
- massgen/configs/memory/single_agent_compression_test.yaml +64 -0
- massgen/configs/tools/custom_tools/claude_code_custom_tool_with_mcp_example.yaml +1 -0
- massgen/configs/tools/custom_tools/claude_custom_tool_example_no_path.yaml +1 -1
- massgen/configs/tools/custom_tools/claude_custom_tool_with_mcp_example.yaml +1 -0
- massgen/configs/tools/custom_tools/computer_use_browser_example.yaml +1 -1
- massgen/configs/tools/custom_tools/computer_use_docker_example.yaml +1 -1
- massgen/configs/tools/custom_tools/gemini_custom_tool_with_mcp_example.yaml +1 -0
- massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_mcp_example.yaml +1 -0
- massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_mcp_example.yaml +1 -0
- massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_mcp_example.yaml +1 -0
- massgen/configs/tools/custom_tools/interop/ag2_and_langgraph_lesson_planner.yaml +65 -0
- massgen/configs/tools/custom_tools/interop/ag2_and_openai_assistant_lesson_planner.yaml +65 -0
- massgen/configs/tools/custom_tools/interop/ag2_lesson_planner_example.yaml +48 -0
- massgen/configs/tools/custom_tools/interop/agentscope_lesson_planner_example.yaml +48 -0
- massgen/configs/tools/custom_tools/interop/langgraph_lesson_planner_example.yaml +49 -0
- massgen/configs/tools/custom_tools/interop/openai_assistant_lesson_planner_example.yaml +50 -0
- massgen/configs/tools/custom_tools/interop/smolagent_lesson_planner_example.yaml +49 -0
- massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_mcp_example.yaml +1 -0
- massgen/configs/tools/custom_tools/two_models_with_tools_example.yaml +44 -0
- massgen/formatter/_gemini_formatter.py +61 -15
- massgen/memory/README.md +277 -0
- massgen/memory/__init__.py +26 -0
- massgen/memory/_base.py +193 -0
- massgen/memory/_compression.py +237 -0
- massgen/memory/_context_monitor.py +211 -0
- massgen/memory/_conversation.py +255 -0
- massgen/memory/_fact_extraction_prompts.py +333 -0
- massgen/memory/_mem0_adapters.py +257 -0
- massgen/memory/_persistent.py +687 -0
- massgen/memory/docker-compose.qdrant.yml +36 -0
- massgen/memory/docs/DESIGN.md +388 -0
- massgen/memory/docs/QUICKSTART.md +409 -0
- massgen/memory/docs/SUMMARY.md +319 -0
- massgen/memory/docs/agent_use_memory.md +408 -0
- massgen/memory/docs/orchestrator_use_memory.md +586 -0
- massgen/memory/examples.py +237 -0
- massgen/orchestrator.py +207 -7
- massgen/tests/memory/test_agent_compression.py +174 -0
- massgen/tests/memory/test_context_window_management.py +286 -0
- massgen/tests/memory/test_force_compression.py +154 -0
- massgen/tests/memory/test_simple_compression.py +147 -0
- massgen/tests/test_ag2_lesson_planner.py +223 -0
- massgen/tests/test_agent_memory.py +534 -0
- massgen/tests/test_config_validator.py +1156 -0
- massgen/tests/test_conversation_memory.py +382 -0
- massgen/tests/test_langgraph_lesson_planner.py +223 -0
- massgen/tests/test_orchestrator_memory.py +620 -0
- massgen/tests/test_persistent_memory.py +435 -0
- massgen/token_manager/token_manager.py +6 -0
- massgen/tool/__init__.py +2 -9
- massgen/tool/_decorators.py +52 -0
- massgen/tool/_extraframework_agents/ag2_lesson_planner_tool.py +251 -0
- massgen/tool/_extraframework_agents/agentscope_lesson_planner_tool.py +303 -0
- massgen/tool/_extraframework_agents/langgraph_lesson_planner_tool.py +275 -0
- massgen/tool/_extraframework_agents/openai_assistant_lesson_planner_tool.py +247 -0
- massgen/tool/_extraframework_agents/smolagent_lesson_planner_tool.py +180 -0
- massgen/tool/_manager.py +102 -16
- massgen/tool/_registered_tool.py +3 -0
- massgen/tool/_result.py +3 -0
- {massgen-0.1.4.dist-info → massgen-0.1.6.dist-info}/METADATA +138 -77
- {massgen-0.1.4.dist-info → massgen-0.1.6.dist-info}/RECORD +82 -37
- massgen/backend/gemini_mcp_manager.py +0 -545
- massgen/backend/gemini_trackers.py +0 -344
- {massgen-0.1.4.dist-info → massgen-0.1.6.dist-info}/WHEEL +0 -0
- {massgen-0.1.4.dist-info → massgen-0.1.6.dist-info}/entry_points.txt +0 -0
- {massgen-0.1.4.dist-info → massgen-0.1.6.dist-info}/licenses/LICENSE +0 -0
- {massgen-0.1.4.dist-info → massgen-0.1.6.dist-info}/top_level.txt +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
massgen/__init__.py,sha256=
|
|
1
|
+
massgen/__init__.py,sha256=yIq-NMGL6E2DUPoiFD1EXYM58NQT8-jCYUHkHK1052o,7974
|
|
2
2
|
massgen/agent_config.py,sha256=wC4_V858My4yDvajLDqo0A84hSNqzj9kEU7v_9fl6RQ,33136
|
|
3
|
-
massgen/chat_agent.py,sha256=
|
|
4
|
-
massgen/cli.py,sha256=
|
|
5
|
-
massgen/config_builder.py,sha256=
|
|
3
|
+
massgen/chat_agent.py,sha256=YYvU60wwjY3upOePVS27-3MPlkME7HzrYCx8B772OSo,37698
|
|
4
|
+
massgen/cli.py,sha256=Lce6PNT8txokKBlMxM0VVa5ItQKpETXSHduw4OHkV8U,132873
|
|
5
|
+
massgen/config_builder.py,sha256=LAjqtwtPV-S2tuMptFAPzzwCWZvXWaiiI-1Y03ld-9E,141656
|
|
6
|
+
massgen/config_validator.py,sha256=2ToWHNMEqQSlydZfSstnvUxqIcum0pdMX_Royv-8tKQ,40684
|
|
6
7
|
massgen/coordination_tracker.py,sha256=_r8Man3uomovpXKHrlc4YBI030tkuavYQ-6fEk2JsfM,28201
|
|
7
8
|
massgen/logger_config.py,sha256=BalZOpvGyeejyI5Q8e8aa9OG3dvYf7VaR-k7u9MLZBg,25457
|
|
8
9
|
massgen/message_templates.py,sha256=yVtynIjwn4bG6bUJ5uAW174LO6-w7jYbG07KCJTDpcY,55900
|
|
9
|
-
massgen/orchestrator.py,sha256=
|
|
10
|
+
massgen/orchestrator.py,sha256=6QNicDee7A5BY5BcaLKI0RWFtStzDEfgvkwOa4yJ_lU,175696
|
|
10
11
|
massgen/utils.py,sha256=dWsLMoRRCwBtzDe8vJQ8mfKDTpyLqstC1aH8L4j2clE,3077
|
|
11
12
|
massgen/adapters/__init__.py,sha256=lYDbplvbiRfXup5e_Q3GzvGujP3V0vqElEJqVfQog2Q,726
|
|
12
13
|
massgen/adapters/ag2_adapter.py,sha256=71I1acslxIrTPDWTkiTICsp2lyRrrc_F4SwQqa2K_vY,18465
|
|
@@ -27,21 +28,19 @@ massgen/api_params_handler/_response_api_params_handler.py,sha256=3ZtMnMqwMtGteV
|
|
|
27
28
|
massgen/backend/__init__.py,sha256=hIxCbgDqHgO6zzFXnulR8dx2gm1Yi4IDdutDsja1fSg,1749
|
|
28
29
|
massgen/backend/azure_openai.py,sha256=hyefku806OPzy_eozz0RU8gcLmYosj-5IwaDXZHIZ2A,18512
|
|
29
30
|
massgen/backend/base.py,sha256=UQWk6nSGnarHmOIzBN2xNNJNeh06WOW0M_6s8E-aexA,21419
|
|
30
|
-
massgen/backend/base_with_custom_tool_and_mcp.py,sha256=
|
|
31
|
-
massgen/backend/capabilities.py,sha256=
|
|
32
|
-
massgen/backend/chat_completions.py,sha256=
|
|
33
|
-
massgen/backend/claude.py,sha256=
|
|
31
|
+
massgen/backend/base_with_custom_tool_and_mcp.py,sha256=iBHl7v2qnFVRa-8v2F36vq14Kb641VsSYqTS9uOkOcU,75641
|
|
32
|
+
massgen/backend/capabilities.py,sha256=tu9v7T8-p9yO7GZjUz_M0RlBqfWqIqvGI97seRe8uZs,14390
|
|
33
|
+
massgen/backend/chat_completions.py,sha256=oWRQN5srP1mVQLyL4JIoWmGlyY92syrTIY95gMtK27w,32061
|
|
34
|
+
massgen/backend/claude.py,sha256=WqpJUTaK3ctCZ46JGI9M9VvmVSPfmH_QjxW94YroKKk,59387
|
|
34
35
|
massgen/backend/claude_code.py,sha256=1x1o8oGl40FA-g3Ulk4n6_lS35prQIQPQ5JdPdKD8Bk,69304
|
|
35
36
|
massgen/backend/cli_base.py,sha256=SlaDxjUdyhhbby6XqU8FdTCtcLuAGR0AmQePDRDSDW4,6820
|
|
36
37
|
massgen/backend/external.py,sha256=uKl91wgJP4psSBuvBCg33nH8bkMcuNVoKE4vNaCNXP4,4300
|
|
37
|
-
massgen/backend/gemini.py,sha256=
|
|
38
|
-
massgen/backend/gemini_mcp_manager.py,sha256=Uakj7TTrrbqGkj70aE2avNHInYJevkZ41H3sfcnzL34,23635
|
|
39
|
-
massgen/backend/gemini_trackers.py,sha256=MQCr1KcDIfWClXCWWqpMDMx8eB38GeCSmm-4-xs89CQ,12557
|
|
38
|
+
massgen/backend/gemini.py,sha256=3t8wNOYkvQvkS8Fr4EY1yNbNEQr9UFctU0fVf-dlQEc,67822
|
|
40
39
|
massgen/backend/gemini_utils.py,sha256=fv5KoiEqabmoe2BRHQ0Ztz2aTJgm05txrfKICDWhYik,2778
|
|
41
|
-
massgen/backend/grok.py,sha256=
|
|
40
|
+
massgen/backend/grok.py,sha256=qANQzY3DlvUpDLmPTpvN_ilJHeOTklJs4I3_iLdbrH8,4230
|
|
42
41
|
massgen/backend/inference.py,sha256=PT_e9fDEHlME0TtJT7_dse2aPtaHliYul9D52n_nXns,5971
|
|
43
42
|
massgen/backend/lmstudio.py,sha256=UEd3Wkdy9r5ceJ3oM7_LR3MYEQv4ghcn2je5F1d-dyU,7267
|
|
44
|
-
massgen/backend/response.py,sha256=
|
|
43
|
+
massgen/backend/response.py,sha256=Kk1l37lmpxCnGCimyq8mV-b5xPKhejV1mVcEKxsILfA,53170
|
|
45
44
|
massgen/backend/docs/BACKEND_ARCHITECTURE.md,sha256=so30oNBwmJBeQz3rHuFCECJjC2Sufwc40--2Rb01jeU,4483
|
|
46
45
|
massgen/backend/docs/CLAUDE_API_RESEARCH.md,sha256=maYwOERkRotnkS2_YJoDTbe6ZDdI-DccKgR1oXHtPxA,9842
|
|
47
46
|
massgen/backend/docs/Function calling openai responses.md,sha256=ffrh5nEkO0tQGO8vJeamcWsgIEB_37XShrSYKLZldTg,37480
|
|
@@ -55,7 +54,7 @@ massgen/backend/docs/OPENAI_response_streaming.md,sha256=ees0GpokNKgg_aAuAODJifD
|
|
|
55
54
|
massgen/backend/docs/inference_backend.md,sha256=NNxvh6JWc2BPWLQrAJKXsXAyvggT-_KRHmboulYNw7Y,6372
|
|
56
55
|
massgen/backend/docs/permissions_and_context_files.md,sha256=PWWbSHlLN51Icqz5FMRA68Xm0dkl65r84pi3AKcL1lQ,40516
|
|
57
56
|
massgen/configs/BACKEND_CONFIGURATION.md,sha256=eJL8dBpGnb3o705R0Uk5QbWanKG9C30jFd8U3gqlbeE,13051
|
|
58
|
-
massgen/configs/README.md,sha256
|
|
57
|
+
massgen/configs/README.md,sha256=GSdb3UKGg9sRXl30K-JN_Ui2QQMLWCw5Ykr5hNUWotM,37849
|
|
59
58
|
massgen/configs/ag2/ag2_case_study.yaml,sha256=kiQanWKY3VyZD6Sl-0ZBMOcWoOWU2AF26IJKKhKak4k,767
|
|
60
59
|
massgen/configs/ag2/ag2_coder.yaml,sha256=jtIBULpg55BthnQ-YRXrJ1xG7Q_IqK-1N5qCitC_A_4,1131
|
|
61
60
|
massgen/configs/ag2/ag2_coder_case_study.yaml,sha256=3mE5mq9zU7V6RZ_XsgiA_-4S04zCNCAYPH7FmTE1suE,1273
|
|
@@ -101,6 +100,11 @@ massgen/configs/debug/code_execution/command_filtering_whitelist.yaml,sha256=Eix
|
|
|
101
100
|
massgen/configs/debug/code_execution/docker_verification.yaml,sha256=fx4CiJM1z7lptY7efOwI8ZCuiYOUgeGnZkcEm6pLJe0,1495
|
|
102
101
|
massgen/configs/docs/DISCORD_MCP_SETUP.md,sha256=T1RhdPV8d6-cnVts-zvz-zoxv2xOtzz8e6eJthOpC2c,7377
|
|
103
102
|
massgen/configs/docs/TWITTER_MCP_ENESCINAR_SETUP.md,sha256=j_BRC5b6IXj8j8lkmi040DYGdl00XHtLD6_XiW3G0Oo,2657
|
|
103
|
+
massgen/configs/memory/gpt5mini_gemini_baseline_research_to_implementation.yaml,sha256=uYE7sqTu4ae-FLztw6ZZG4X-wwrcQnd1e51Q9DXUw5E,3665
|
|
104
|
+
massgen/configs/memory/gpt5mini_gemini_context_window_management.yaml,sha256=8onQ_070HOT1iBzJL0EI6AAXxlMdPTe3aanTV9WmUtM,8134
|
|
105
|
+
massgen/configs/memory/gpt5mini_gemini_research_to_implementation.yaml,sha256=KkdxtyfrKmqi9A_uL3ghANsxjht7RWLk3hubW7bqZZc,4337
|
|
106
|
+
massgen/configs/memory/gpt5mini_high_reasoning_gemini.yaml,sha256=xC0nYXEhxQbgPtOOpMw5evcmifGYLaHvOlv3i8kM-7k,3919
|
|
107
|
+
massgen/configs/memory/single_agent_compression_test.yaml,sha256=pL9LOLa3PL3PlNs6dYEcYE3uOVW6081vq6B8z8PvRGw,1976
|
|
104
108
|
massgen/configs/providers/azure/azure_openai_multi.yaml,sha256=9aEPTv1dyu26fCC6MA_gzKnG_MehNE_cdT3r6t5Uccc,831
|
|
105
109
|
massgen/configs/providers/azure/azure_openai_single.yaml,sha256=r_E7hwtGP5goWro6VH02DMW1Q1kOO3Z2tzLK5C3L9y0,642
|
|
106
110
|
massgen/configs/providers/claude/claude.yaml,sha256=IOvxJ2s4_RC5zWRk3sBsiVwaL2XGhShfjJJ_mhCHzZ0,340
|
|
@@ -126,42 +130,42 @@ massgen/configs/tools/code-execution/docker_with_sudo.yaml,sha256=dazWZYH2xt6TI9
|
|
|
126
130
|
massgen/configs/tools/code-execution/multi_agent_playwright_automation.yaml,sha256=Y730nR5O737u85xmbkXX-Gb3yDIgrnx2HRNNijQYWG4,2124
|
|
127
131
|
massgen/configs/tools/custom_tools/claude_code_custom_tool_example.yaml,sha256=2pksSj-t_HVuCuEUJl7O1yX5lAs5OqdarVBHGT4lmeU,1278
|
|
128
132
|
massgen/configs/tools/custom_tools/claude_code_custom_tool_example_no_path.yaml,sha256=RogCKe-ZF2FNNVX8QBKbg-k1g1s2jzqXF6zWw5YgZWw,1085
|
|
129
|
-
massgen/configs/tools/custom_tools/claude_code_custom_tool_with_mcp_example.yaml,sha256=
|
|
133
|
+
massgen/configs/tools/custom_tools/claude_code_custom_tool_with_mcp_example.yaml,sha256=cBvs93UJP84lAgR3Ogv1U5gY4YVhO-JTQeTEMDUyUDc,1984
|
|
130
134
|
massgen/configs/tools/custom_tools/claude_code_custom_tool_with_wrong_mcp_example.yaml,sha256=4lBy0prZ8DvfM0PE3EqrOrCHVJCH7Ql6sKlaGF4esgg,1775
|
|
131
135
|
massgen/configs/tools/custom_tools/claude_code_wrong_custom_tool_with_mcp_example.yaml,sha256=s31uZUgYepu-9RhM7ZPQ7rqGL4nQY1P_lbIdCCDqb3s,1732
|
|
132
136
|
massgen/configs/tools/custom_tools/claude_custom_tool_example.yaml,sha256=FFTBRdsxvCMKY0O29jhOuSvFr91pDuviysuzfRjhHjk,977
|
|
133
|
-
massgen/configs/tools/custom_tools/claude_custom_tool_example_no_path.yaml,sha256=
|
|
134
|
-
massgen/configs/tools/custom_tools/claude_custom_tool_with_mcp_example.yaml,sha256=
|
|
137
|
+
massgen/configs/tools/custom_tools/claude_custom_tool_example_no_path.yaml,sha256=fv5DdPCQdazyiegx0KNY6klgsZX7J1RnJMo4JKZMoyw,903
|
|
138
|
+
massgen/configs/tools/custom_tools/claude_custom_tool_with_mcp_example.yaml,sha256=8wsw4HZ6nFrUsBnaNtpvujsFUxtzLCnxg_NMc2I19B4,1786
|
|
135
139
|
massgen/configs/tools/custom_tools/claude_custom_tool_with_wrong_mcp_example.yaml,sha256=V9VLjM16o59ipc_ktBqlLyYph27J4EBWTG0kB8nK_jc,1582
|
|
136
140
|
massgen/configs/tools/custom_tools/claude_wrong_custom_tool_with_mcp_example.yaml,sha256=pJdkL0yQZscsHWJynUkmXv7BufZILs12PxAHM2AL8cI,1556
|
|
137
|
-
massgen/configs/tools/custom_tools/computer_use_browser_example.yaml,sha256=
|
|
138
|
-
massgen/configs/tools/custom_tools/computer_use_docker_example.yaml,sha256=
|
|
141
|
+
massgen/configs/tools/custom_tools/computer_use_browser_example.yaml,sha256=tI_4hkDXSBs15T76gcls-r2GpLf4gMVYjpLUuCAOckw,1940
|
|
142
|
+
massgen/configs/tools/custom_tools/computer_use_docker_example.yaml,sha256=P0TdR6pE-YYEOhAzrQnlU6RpTKU5UA1yW9tvS5Nk-yE,2151
|
|
139
143
|
massgen/configs/tools/custom_tools/computer_use_example.yaml,sha256=lXeVCFsCsKhqmlCNpBoieRe_WblzRgJcmf3Tt8Uvmi4,1902
|
|
140
144
|
massgen/configs/tools/custom_tools/crawl4ai_example.yaml,sha256=Ug-wfOyStvs5Ubcn1epmxGSYbpfyVNr5ialPrJ8wtlk,2281
|
|
141
145
|
massgen/configs/tools/custom_tools/gemini_custom_tool_example.yaml,sha256=5-XCjo2O7SqyTILWD8x3qPD7AWafLWkhBW5giN4JyMM,981
|
|
142
146
|
massgen/configs/tools/custom_tools/gemini_custom_tool_example_no_path.yaml,sha256=Hd6zC7Mms1PxrNQ9KpmVFgSDeQCzejpIRzzJgVqVkQY,900
|
|
143
|
-
massgen/configs/tools/custom_tools/gemini_custom_tool_with_mcp_example.yaml,sha256=
|
|
147
|
+
massgen/configs/tools/custom_tools/gemini_custom_tool_with_mcp_example.yaml,sha256=WiDGGAglAlERyoPx63Paowx9dInsOS1xj9Y5R7Esozc,1796
|
|
144
148
|
massgen/configs/tools/custom_tools/gemini_custom_tool_with_wrong_mcp_example.yaml,sha256=d13-pVFtqAI-Zfo8kWzpr7nUW5iP6DPsMpz1XKk4Bqc,1586
|
|
145
149
|
massgen/configs/tools/custom_tools/gemini_wrong_custom_tool_with_mcp_example.yaml,sha256=2E-W6iEHTiD1J7FRJmOnSeciCRz7KeONmYkWln-rOtM,1544
|
|
146
150
|
massgen/configs/tools/custom_tools/github_issue_market_analysis.yaml,sha256=VTXtsiPdoUksAfN6scjfYtFjDLK-n8W5awxXPm6HfNs,3658
|
|
147
151
|
massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_example.yaml,sha256=kFMxb2UiRtGy6YfSWo1b0uCVsB8jULcfj-noEiLMYFA,960
|
|
148
152
|
massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_example_no_path.yaml,sha256=EmuMhlphEMr3-wKlC2mip3pQbaEQ2cI113tTp4ex43Y,897
|
|
149
|
-
massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_mcp_example.yaml,sha256=
|
|
153
|
+
massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_mcp_example.yaml,sha256=sqqnSJMa-MsipvLntMv52ozF4wAQtKWxJGU4m8sJSMY,1790
|
|
150
154
|
massgen/configs/tools/custom_tools/gpt5_nano_custom_tool_with_wrong_mcp_example.yaml,sha256=xruzmYhWQzhkdA_K5xfwpa0jnFbs0WkCf1FaxpjpN1M,1583
|
|
151
155
|
massgen/configs/tools/custom_tools/gpt5_nano_wrong_custom_tool_with_mcp_example.yaml,sha256=3AF4MsgEo6K9uHdWnbcQyzXcDQBjN3RlTSbHv_PgJ9Q,1557
|
|
152
156
|
massgen/configs/tools/custom_tools/gpt_oss_custom_tool_example.yaml,sha256=C0i07OuIP5iaucT1W0O9LIKAhOzEB1uBxHt4BuLGCrU,1013
|
|
153
157
|
massgen/configs/tools/custom_tools/gpt_oss_custom_tool_example_no_path.yaml,sha256=7p-VfqnmR93R8gOaomg4AcJJO9cvKi-q2dpIi6Jb6jw,939
|
|
154
|
-
massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_mcp_example.yaml,sha256=
|
|
158
|
+
massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_mcp_example.yaml,sha256=zB-5n_aRHtpvOfFn3ykdDCv2dDVonNTiAwB6Oocpv3w,1754
|
|
155
159
|
massgen/configs/tools/custom_tools/gpt_oss_custom_tool_with_wrong_mcp_example.yaml,sha256=GGV-0Ob2z_TKvMqJDIdir8RgP8d2w4i4QwdrB13g9cQ,1625
|
|
156
160
|
massgen/configs/tools/custom_tools/gpt_oss_wrong_custom_tool_with_mcp_example.yaml,sha256=FbReuXVVxbOYt76UMH6ZDrj07Z7MRYZUD33Xb0G7ki0,1583
|
|
157
161
|
massgen/configs/tools/custom_tools/grok3_mini_custom_tool_example.yaml,sha256=A_4hqjiRCYq-YOc3v1TwCFkleyCuzcHuZ2HJu8BM2vQ,1064
|
|
158
162
|
massgen/configs/tools/custom_tools/grok3_mini_custom_tool_example_no_path.yaml,sha256=LJk9912YYjJlZeDli9qLGj7Cb6GZOCrt3va8RjUXCIA,882
|
|
159
|
-
massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_mcp_example.yaml,sha256=
|
|
163
|
+
massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_mcp_example.yaml,sha256=brQO4wXKrnZuhw4pmrutED1qZpSgVQZtKEZQr83bDYs,1776
|
|
160
164
|
massgen/configs/tools/custom_tools/grok3_mini_custom_tool_with_wrong_mcp_example.yaml,sha256=XTl7FyWG6YhXopDu-rTYfszChW2MnIYm1VHRMb-iewQ,1568
|
|
161
165
|
massgen/configs/tools/custom_tools/grok3_mini_wrong_custom_tool_with_mcp_example.yaml,sha256=OIlL0kmchfYRO2iOc4CKBRXFDn41t7s1hdPtbeLIpBc,1542
|
|
162
166
|
massgen/configs/tools/custom_tools/qwen_api_custom_tool_example.yaml,sha256=wOH48VkZqVFMLYU516NCjbzahH3xsB9bXPl0aGPQ8bM,1143
|
|
163
167
|
massgen/configs/tools/custom_tools/qwen_api_custom_tool_example_no_path.yaml,sha256=YIs5661kFRYaPYju_Zj56c87NQ4fLICZTeO2mSPo9WU,959
|
|
164
|
-
massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_mcp_example.yaml,sha256=
|
|
168
|
+
massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_mcp_example.yaml,sha256=VyqIO1USzSd9GkM3QDoUW1QJwEvG0Zq8rUL6jRKREvs,1851
|
|
165
169
|
massgen/configs/tools/custom_tools/qwen_api_custom_tool_with_wrong_mcp_example.yaml,sha256=88QQN9-QLWhy22ScP9szU2Jq7RPTn2PrqyiIdVdkZlM,1645
|
|
166
170
|
massgen/configs/tools/custom_tools/qwen_api_wrong_custom_tool_with_mcp_example.yaml,sha256=LZEfPLesrNZCzUeYpQWOHBe1FNugaIIOoxfNTHcR68k,1619
|
|
167
171
|
massgen/configs/tools/custom_tools/qwen_local_custom_tool_example.yaml,sha256=qQymbhsCDE4RZsB2TQLUHg5_Cdm1u2Zoh4aW98Xkco0,1083
|
|
@@ -169,6 +173,14 @@ massgen/configs/tools/custom_tools/qwen_local_custom_tool_example_no_path.yaml,s
|
|
|
169
173
|
massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_mcp_example.yaml,sha256=zfvh9RNycLiPAauQmw0_qEAO2qaHBAf-sAvYpKiP87s,1609
|
|
170
174
|
massgen/configs/tools/custom_tools/qwen_local_custom_tool_with_wrong_mcp_example.yaml,sha256=73JeuKxgCHz6nkquj5mANDcTBkW8Cg1zjCVtUGqYdJM,1587
|
|
171
175
|
massgen/configs/tools/custom_tools/qwen_local_wrong_custom_tool_with_mcp_example.yaml,sha256=ruGn-4X-ObShSY3ZqtTSxee6_TmBniJRKF7I_3to4CM,1561
|
|
176
|
+
massgen/configs/tools/custom_tools/two_models_with_tools_example.yaml,sha256=0gcO7UVzOHa97iM6kNHM306PZGUZ9w85N0lDw927XB0,1937
|
|
177
|
+
massgen/configs/tools/custom_tools/interop/ag2_and_langgraph_lesson_planner.yaml,sha256=ioTbUGiC93lsGAWlaj8ZGq7tOpA4nJrkx2Gz_CFBtlE,2835
|
|
178
|
+
massgen/configs/tools/custom_tools/interop/ag2_and_openai_assistant_lesson_planner.yaml,sha256=CN1dAM_byPC7xG0rxcyJFsV45T9RCXezBdZYA_S4c3Q,2953
|
|
179
|
+
massgen/configs/tools/custom_tools/interop/ag2_lesson_planner_example.yaml,sha256=N_D0PhtnVMc7b7RFJXThdBQzebwPUXUx7z8kqPohwKk,2269
|
|
180
|
+
massgen/configs/tools/custom_tools/interop/agentscope_lesson_planner_example.yaml,sha256=RAmmhBmg9lfo3awgph5NrFRTf7TkRmFR_60crOCNZJo,2389
|
|
181
|
+
massgen/configs/tools/custom_tools/interop/langgraph_lesson_planner_example.yaml,sha256=2j9Go61Tre1vdrUIy9CRHaDXHaebGqz4saSjcm95JZg,2384
|
|
182
|
+
massgen/configs/tools/custom_tools/interop/openai_assistant_lesson_planner_example.yaml,sha256=8Aty80housjF6UW00znOOde_u0QZ4SSc_NJiQG2CAVQ,2836
|
|
183
|
+
massgen/configs/tools/custom_tools/interop/smolagent_lesson_planner_example.yaml,sha256=3TzdgfxOJ-7QaSE-HApnk5JxzFYPCfeeQi_BoWC7aJQ,2314
|
|
172
184
|
massgen/configs/tools/custom_tools/multimodal_tools/text_to_file_generation_multi.yaml,sha256=RcZ2oJHPdsCxH2gFZOyXTZRFuuxCPtVJRnpPxjXPmKM,3334
|
|
173
185
|
massgen/configs/tools/custom_tools/multimodal_tools/text_to_file_generation_single.yaml,sha256=Jl9ixbRi9LvdnSia6zOIJ5SJJr_B57WYfI5nlUum1Ko,1608
|
|
174
186
|
massgen/configs/tools/custom_tools/multimodal_tools/text_to_image_generation_multi.yaml,sha256=1LYKeh5EXFgECbGe2QsQFRN4OsZAiAC-Z02iio3gheo,1946
|
|
@@ -251,7 +263,7 @@ massgen/formatter/__init__.py,sha256=t3qDPvytyzIBkqYW9CCqTflikQ8ynw_AlF0PFgnH9Yc
|
|
|
251
263
|
massgen/formatter/_chat_completions_formatter.py,sha256=3ezx30SDf4XHQac0qRWfgobCs7iS7vlsKpSrgymmq-c,16034
|
|
252
264
|
massgen/formatter/_claude_formatter.py,sha256=J3fzg17dOJPdK4oEDCkkOsnx92J-7EOye3gpXoNqKUA,15435
|
|
253
265
|
massgen/formatter/_formatter_base.py,sha256=aoAzCQwDQC8vCOS_0lgFzTWue2nENxXbGUMw76uetqw,4790
|
|
254
|
-
massgen/formatter/_gemini_formatter.py,sha256=
|
|
266
|
+
massgen/formatter/_gemini_formatter.py,sha256=hAY7WMigBzYpNW4Oure8mN06V3rf6JWw23KEGPg1vTE,21070
|
|
255
267
|
massgen/formatter/_response_formatter.py,sha256=DKGZwF_QVnaSXE6Bq8iw-jdcrLALQn_AM74MYCnZFtA,14245
|
|
256
268
|
massgen/frontend/__init__.py,sha256=mF_-mNFccS9V1SwqKD7_FB2mvzI2Agzuk3orxtxsWDc,658
|
|
257
269
|
massgen/frontend/coordination_ui.py,sha256=A2jW3pj8dKeZ1_KV2sxkJvJLHdmi67H0jJZU2Eu9MdU,50606
|
|
@@ -275,6 +287,22 @@ massgen/mcp_tools/docs/client.md,sha256=5xLWgJXzXTCVf3Aa4c96HJmr5l5ik413ZIxchIBo
|
|
|
275
287
|
massgen/mcp_tools/docs/config_validator.md,sha256=E22jptaS5FXWiERmq_k9AgPMCRUVVquCH3pUadg5XLo,15729
|
|
276
288
|
massgen/mcp_tools/docs/exceptions.md,sha256=8pNfzHHhQ6t_Ife9Hh3dsS2-E3_JlGvzvBcJnD4bqKY,34229
|
|
277
289
|
massgen/mcp_tools/docs/security.md,sha256=qCB3iVk-WH7Mppe0Ra9-w2_Rip0jrNiDM0OtCHXTcFQ,26184
|
|
290
|
+
massgen/memory/README.md,sha256=nI168IWvg_totfPnXw8CiPtOGcMwZwz13wLlSoDoJPY,7538
|
|
291
|
+
massgen/memory/__init__.py,sha256=MmtPbiQe0jwbqyBLptQGmq78FppWa3ptpef2Et4JK1w,789
|
|
292
|
+
massgen/memory/_base.py,sha256=l1TXptDMl960HXcNDfiyD2aENB4IoW_pM4-zNhG7PPs,5783
|
|
293
|
+
massgen/memory/_compression.py,sha256=Qdd1ED6Lazx3-o1Dt3iUfAGDdmeIbn-odcwaz9I_Shk,8300
|
|
294
|
+
massgen/memory/_context_monitor.py,sha256=EIBibihvYtg3gKdMexzqCJsLbHoA6qApa_zy4tQ1LZU,7611
|
|
295
|
+
massgen/memory/_conversation.py,sha256=arLvoRfL5bylIwOFKDuZnXVi3p0nCvCqAPlc5nAH-GQ,8189
|
|
296
|
+
massgen/memory/_fact_extraction_prompts.py,sha256=e2Jmh8uDXAFNblIsYIRhcoh1ORzOb399sr3k8PTuM4s,14924
|
|
297
|
+
massgen/memory/_mem0_adapters.py,sha256=JLbC6dD2NA98Ci7VuHzc6hcuMjOYQLLIsuG8r2oGrpg,8871
|
|
298
|
+
massgen/memory/_persistent.py,sha256=P2kciQTa5sZRlZ1edcxsVuKgo5u8lBFDiKWGefucUOg,27884
|
|
299
|
+
massgen/memory/docker-compose.qdrant.yml,sha256=eE8voIsOrgSJ_jWuvJ492Crz17sKgIoD13XKZpqr7Io,935
|
|
300
|
+
massgen/memory/examples.py,sha256=Z089ZtRRHv01kX1v35-PG9IenbEQAGA4dVAZaHD81Rc,7552
|
|
301
|
+
massgen/memory/docs/DESIGN.md,sha256=vM9GuWqhxkLRICZ7UyPpcxXL1N-pdvr-r1H9j5ANb34,12885
|
|
302
|
+
massgen/memory/docs/QUICKSTART.md,sha256=ItQ10tHiC9EsgtKo3vIw4LlXSuVGzfvjmgGgPALJkMY,10438
|
|
303
|
+
massgen/memory/docs/SUMMARY.md,sha256=LdMkesNPJTC2zeJiktkeinyK9iTwOXX8GMGniAQLHtM,9485
|
|
304
|
+
massgen/memory/docs/agent_use_memory.md,sha256=pDyd_EHD9AY3D4SjhEYXUrTNSQBTJsiBGLGmgqlX78M,13547
|
|
305
|
+
massgen/memory/docs/orchestrator_use_memory.md,sha256=eKrDZUmqLrd8EjGObdYOuML-wtJhkpRPSqL9d7QilUs,22853
|
|
278
306
|
massgen/stream_chunk/__init__.py,sha256=fc8Jn-Ow2ZKFWJR72DRA6r65_CtViM9NLvWGT-TrhU4,898
|
|
279
307
|
massgen/stream_chunk/base.py,sha256=NubSk62R_ngr13IBTqz6HACnfh-LAsmkgzZ93nkj-fM,2810
|
|
280
308
|
massgen/stream_chunk/multimodal.py,sha256=ojaO-1EFnhA0H94YczxmkP6f0XV3lvTlb62Lc-JgltI,7916
|
|
@@ -284,6 +312,8 @@ massgen/tests/custom_tools_example.py,sha256=-f6_iGfEipznkKVKdzZwgGyQXw9JzOm9Lwc
|
|
|
284
312
|
massgen/tests/mcp_test_server.py,sha256=hx1dKMxFufzynG6sCd2117ma0ywPy9hiVjkUsAxtsP8,5660
|
|
285
313
|
massgen/tests/multi_turn_conversation_design.md,sha256=q9vMFNZ-LOTqZdI8oOWAQjPIY773s_mOXptq582Pk6E,7501
|
|
286
314
|
massgen/tests/multiturn_llm_input_analysis.md,sha256=Xw8PX0oAIbF_zjlRXCA62EpX1xAOGUq9brYl3UkyAR0,6997
|
|
315
|
+
massgen/tests/test_ag2_lesson_planner.py,sha256=4X8CM37SaNMmhd1Fe3f_3CWm6sTWG7cWtcH9hXIVuaw,7843
|
|
316
|
+
massgen/tests/test_agent_memory.py,sha256=bTTPIkyecYRm7yu9f5080xxQcdDIKW45EFCj-RrP4Us,18541
|
|
287
317
|
massgen/tests/test_azure_openai_backend.py,sha256=a9JFdCnDDkG_PKjLxN8QqBwyzP_aNNlP543iST2pyPw,6663
|
|
288
318
|
massgen/tests/test_backend_capabilities.py,sha256=MXIO-4ia07a-95JbyyBeIlz79B-eResn8ej2fpiX6II,10966
|
|
289
319
|
massgen/tests/test_backend_event_loop_all.py,sha256=vfTlD2spAYVITGgwQzntFmvN_W10sSqO0XGpgESmmNQ,5565
|
|
@@ -297,6 +327,8 @@ massgen/tests/test_claude_code_orchestrator.py,sha256=1bFLHQSgPqw2ecPjoZpsSg5lw8
|
|
|
297
327
|
massgen/tests/test_cli_backends.py,sha256=6KPYnNgwGYRCGIXJTNWBCBHK1w8ylrBWFqt_HBWlelk,5918
|
|
298
328
|
massgen/tests/test_code_execution.py,sha256=fbXNg7NeUpuodpixeR7WhNAAtk9Je1VLwQQfw6N3CYU,30099
|
|
299
329
|
massgen/tests/test_config_builder.py,sha256=OcDfeVcKp_7zUruujNwKkpf0pwQ5f5ZzrgnHQYiEA2g,17781
|
|
330
|
+
massgen/tests/test_config_validator.py,sha256=CJ81pvmAclJ4I1czD1-HYNT07p_0ZW1OaXKbZjCOm9w,39519
|
|
331
|
+
massgen/tests/test_conversation_memory.py,sha256=o_wrjvVYB113Y24JF0s6n1Re51ly1GKDG-1LhDxlyqk,11398
|
|
300
332
|
massgen/tests/test_custom_tools.py,sha256=zUOjlZdT1eC7jgx28Z3TfzUTqFvAmRumK2Uv-lq1f3E,12905
|
|
301
333
|
massgen/tests/test_external_agent_backend.py,sha256=1ImeUo0tQIdaG7ASn1X-rkuHBuAUrmk3d4l8U4LaJHI,3948
|
|
302
334
|
massgen/tests/test_final_presentation_fallback.py,sha256=aMG9-6TjWseGPvY_zHOiKpdi5I4jHTMUEURaIu-5oNw,8985
|
|
@@ -305,12 +337,15 @@ massgen/tests/test_grok_backend.py,sha256=Dw7fFcyXPOL8x0N4aCRHjTAuvxmtyLp6Tj02c_
|
|
|
305
337
|
massgen/tests/test_http_mcp_server.py,sha256=GjYOIUTk5skBWgFLwZz9UyRJPjjHCrcsWnlslOUQ5M4,1042
|
|
306
338
|
massgen/tests/test_integration_simple.py,sha256=Dps0m3Nfjqphi_1cLTultnfqxJTonL3aZxgq7kkewZ8,6147
|
|
307
339
|
massgen/tests/test_intelligent_planning_mode.py,sha256=T2KjezqA6_1Ixj8uIEpXb9yuN0kG8tINfkl2C7KyWu8,24685
|
|
340
|
+
massgen/tests/test_langgraph_lesson_planner.py,sha256=BtiyTo3k3fCd-29jqhfKrSXwCLDbs8fW3t0gv4qF0bY,8009
|
|
308
341
|
massgen/tests/test_mcp_blocking.py,sha256=rMvkozLGbEScYj01p8gfQmX2gssGriCIVDVo1e2bplU,4606
|
|
309
342
|
massgen/tests/test_message_context_building.py,sha256=8AXcVDtv0R8uI-1PVLwYVFSWP-t3KeIDvy7vifrLPyU,10563
|
|
310
343
|
massgen/tests/test_multimodal_size_limits.py,sha256=y5UAb48PqgSnsB467GRU50A0Rmi8f-hr6FpEGU40BCk,14968
|
|
311
344
|
massgen/tests/test_orchestration_restart.py,sha256=YqYXokEdQuzC9u8xFAkSMSbDKtRUk2Vu2eoKxt66iOk,7239
|
|
312
345
|
massgen/tests/test_orchestrator_final_presentation.py,sha256=Yt0-IACu0PGe4IpoGW7mpBDNdyFW_6W5Q1Hzry3gAys,1238
|
|
346
|
+
massgen/tests/test_orchestrator_memory.py,sha256=SjzvrvYLnpaU9U5mmOy8ZD5FZ67gbUBZg1qglXqG9kI,22162
|
|
313
347
|
massgen/tests/test_path_permission_manager.py,sha256=DjOQvhUE6Tg4UGGJzl8AwnFnlvQgJf2WaUVvebkK8UA,88275
|
|
348
|
+
massgen/tests/test_persistent_memory.py,sha256=W9qiKEapoTLYExGZ2xALMQtfHDjVeuacCA4mwbMVpTo,15037
|
|
314
349
|
massgen/tests/test_rich_terminal_display.py,sha256=r-SfoWf8T1P-cwZTnbVp3AYuxr-98h0K7XqI8Y5tcR4,12157
|
|
315
350
|
massgen/tests/test_timeout.py,sha256=35Lecz6WHPZXN_B1ru-XYQQhRr-Npx_LoqemsTQk7sE,5082
|
|
316
351
|
massgen/tests/test_tools.py,sha256=GnJNNB-cZj142txDwJKzN0zUKd0wb_p7lRWNJnB0qkc,3594
|
|
@@ -318,20 +353,30 @@ massgen/tests/test_v3_3agents.py,sha256=YARcuU3bc61BJhgMlojJ-AaHyIC__C31KzPf5W9f
|
|
|
318
353
|
massgen/tests/test_v3_simple.py,sha256=MCJkqnCldRmPhZF0IMvWyjbO9Xjz-_uv1rZqtW2kniw,6544
|
|
319
354
|
massgen/tests/test_v3_three_agents.py,sha256=t76yek3DRFJpgs4hiuc9BT5VKyU_RwgHcthZxjM8otM,9266
|
|
320
355
|
massgen/tests/test_v3_two_agents.py,sha256=G3WJuMdCjMdp0WItur48IGJ69B4HBs5RhpDjYJayzHo,5768
|
|
356
|
+
massgen/tests/memory/test_agent_compression.py,sha256=1OD2sXrfEGm7NIzIYAo4lMOnSleAEacaAlN7Qn3Kac8,5707
|
|
357
|
+
massgen/tests/memory/test_context_window_management.py,sha256=VnuEykGYZnS_OMVX4LJbHOxvq6wqGKGSY9WrLfqzTWw,10948
|
|
358
|
+
massgen/tests/memory/test_force_compression.py,sha256=NBo52hWJOdBLvQsPAh812QMAOeTgC52zIA3mmHS_mY0,5749
|
|
359
|
+
massgen/tests/memory/test_simple_compression.py,sha256=8WFSucWaHkHRA8lMJ5jm1Ki6ypHoVI4UXIaxFYLah1g,4889
|
|
321
360
|
massgen/token_manager/__init__.py,sha256=SxFK64M3S69E51d1M37pq38O39mIZp-9TMxAspwR3wY,143
|
|
322
|
-
massgen/token_manager/token_manager.py,sha256=
|
|
361
|
+
massgen/token_manager/token_manager.py,sha256=5S5uzLw2Zec9P3bYA1lPNluxgFg_wi6W151pGuHfb-Y,16903
|
|
323
362
|
massgen/tool/README.md,sha256=wauBHnWMUIQiGendrYUeUFW7LesRznGpJx9TR5qJpEU,24365
|
|
324
|
-
massgen/tool/__init__.py,sha256=
|
|
363
|
+
massgen/tool/__init__.py,sha256=AXbjJWFCNELYNhJJXVG0Pgo847sUuV7AOaoFFLIOSCs,906
|
|
325
364
|
massgen/tool/_async_helpers.py,sha256=SyfWZ_fLLq2knwM5j4TaYVV1cTWElxWRSzH1FkapcL8,2411
|
|
365
|
+
massgen/tool/_decorators.py,sha256=Aq5EFqRRxqjmK80f7VczYDqOxzm4z4lYKWVJq2UhXYc,1993
|
|
326
366
|
massgen/tool/_exceptions.py,sha256=HGFXB1-cpj1bLCRtiVAP8BeiyBdzVWWsNGekQCvergA,1188
|
|
327
|
-
massgen/tool/_manager.py,sha256=
|
|
328
|
-
massgen/tool/_registered_tool.py,sha256=
|
|
329
|
-
massgen/tool/_result.py,sha256=
|
|
367
|
+
massgen/tool/_manager.py,sha256=T3EEv4YNr4bTu7v0OT05ZELqtfGvxL1AU9QjJfEt8OA,26992
|
|
368
|
+
massgen/tool/_registered_tool.py,sha256=PaKY19WjBdgqWf8NcuuTaj9OOAB_DG_mPfHvRKGxGAA,3148
|
|
369
|
+
massgen/tool/_result.py,sha256=8fRxQYmYywRyaSP4k5aaIeQn2ymb6lyCNvaKJ7nx3TM,1710
|
|
330
370
|
massgen/tool/_basic/__init__.py,sha256=oTNQVOeoSE-7ZQ2IslWOy0_ou0IbUAvjPga8HrHTgqg,119
|
|
331
371
|
massgen/tool/_basic/_two_num_tool.py,sha256=HzBBjZVfM1P01iIgLJhthpBcSevShId5NZIdmtFBE5A,498
|
|
332
372
|
massgen/tool/_code_executors/__init__.py,sha256=fx__VbgCtWnnPh559PVMFYYBd880fqF2wPrcVCDbQt0,211
|
|
333
373
|
massgen/tool/_code_executors/_python_executor.py,sha256=G7n9qknm5A3mxlVq5NwGuNeq39A6GuLxP0VcWB0A0Rg,2458
|
|
334
374
|
massgen/tool/_code_executors/_shell_executor.py,sha256=SIV8-GyrlKNOqDB4SHYlK46ff82_eAV1CgxvChnG4FA,1872
|
|
375
|
+
massgen/tool/_extraframework_agents/ag2_lesson_planner_tool.py,sha256=oVC2WW0Fy2hcGqkfVjBpYFf1F36_HVYeJR6bI8NrEzE,8413
|
|
376
|
+
massgen/tool/_extraframework_agents/agentscope_lesson_planner_tool.py,sha256=nEj-3dDw-DmSel9ct2pakhgAKCaK7E9RBuQDBaK8oP8,9674
|
|
377
|
+
massgen/tool/_extraframework_agents/langgraph_lesson_planner_tool.py,sha256=ax3_tfBcB1IE5uoOAg9z-nWT2viAYcww30SDFDAUU0Q,9714
|
|
378
|
+
massgen/tool/_extraframework_agents/openai_assistant_lesson_planner_tool.py,sha256=JcMTuoOcku3iQqcO-HueKNCkXCxHPXILu8TKAa_o25I,8170
|
|
379
|
+
massgen/tool/_extraframework_agents/smolagent_lesson_planner_tool.py,sha256=MSdTWCgGKz93-OAOApVBhC-OpXoAesKQXxmH9tfoi_Q,5805
|
|
335
380
|
massgen/tool/_file_handlers/__init__.py,sha256=GoQ5hNFkU6UyGux_NfMhvYqJIwMWV0FIYDT0hO6FV-Q,232
|
|
336
381
|
massgen/tool/_file_handlers/_file_operations.py,sha256=r-ykRNVSTUv6HSWr86EsjGkW5r_LTJGcYo0VchByA0A,6915
|
|
337
382
|
massgen/tool/_multimodal_tools/image_to_image_generation.py,sha256=VcSsyX4h8eLY0YDYwxaO-9wFixRaAaMfZ1y5LzA-pg0,11391
|
|
@@ -377,9 +422,9 @@ massgen/v1/examples/fast-4o-mini-config.yaml,sha256=t7zmN8sWQrrWivjaBB9w_WHFDnU-
|
|
|
377
422
|
massgen/v1/examples/fast_config.yaml,sha256=BDBCpSYJPzTZi9vAEGsCZ3lt3JV25RN-4Nf_17JAhUU,846
|
|
378
423
|
massgen/v1/examples/production.yaml,sha256=hrNqzOqlQG1sL-5U8ZlA8QpCwGSoiCtqMu7Mi2gOd9s,2002
|
|
379
424
|
massgen/v1/examples/single_agent.yaml,sha256=h8ysGIwPjvgnpRxTcBqw5nBz5D2MTXI_Ygdn4D9RdIA,1256
|
|
380
|
-
massgen-0.1.
|
|
381
|
-
massgen-0.1.
|
|
382
|
-
massgen-0.1.
|
|
383
|
-
massgen-0.1.
|
|
384
|
-
massgen-0.1.
|
|
385
|
-
massgen-0.1.
|
|
425
|
+
massgen-0.1.6.dist-info/licenses/LICENSE,sha256=_r2TwhSv0GcpGeIKfwbz9z2qzOI62FHCfgSfnZ1z2fc,11386
|
|
426
|
+
massgen-0.1.6.dist-info/METADATA,sha256=rXbKbhPqn7dmHOU-EAmxah_i8ao2AhpIxuaSyMXTo7Q,67577
|
|
427
|
+
massgen-0.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
428
|
+
massgen-0.1.6.dist-info/entry_points.txt,sha256=On6OV7swWO0StsAXeOri3MzmuxhO9C-PUvKW-5pJ6gA,49
|
|
429
|
+
massgen-0.1.6.dist-info/top_level.txt,sha256=jm8ZxEGdkjsh8aPWXvCpnexL_S2ZRkFeT9vl6vIm_3I,8
|
|
430
|
+
massgen-0.1.6.dist-info/RECORD,,
|