marsys 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (268) hide show
  1. marsys-0.1.0/AUTHORS +26 -0
  2. marsys-0.1.0/CHANGELOG.md +211 -0
  3. marsys-0.1.0/CLAUDE.md +1075 -0
  4. marsys-0.1.0/LICENSE +202 -0
  5. marsys-0.1.0/MANIFEST.in +69 -0
  6. marsys-0.1.0/Multi-Agent_Patterns.md +816 -0
  7. marsys-0.1.0/PKG-INFO +649 -0
  8. marsys-0.1.0/README.md +549 -0
  9. marsys-0.1.0/config/logging.yaml +124 -0
  10. marsys-0.1.0/docs/CLA.md +149 -0
  11. marsys-0.1.0/docs/CLA_SETUP_GUIDE.md +370 -0
  12. marsys-0.1.0/docs/api/agent-class.md +701 -0
  13. marsys-0.1.0/docs/api/communication.md +583 -0
  14. marsys-0.1.0/docs/api/configuration.md +632 -0
  15. marsys-0.1.0/docs/api/execution.md +467 -0
  16. marsys-0.1.0/docs/api/memory.md +372 -0
  17. marsys-0.1.0/docs/api/models.md +861 -0
  18. marsys-0.1.0/docs/api/orchestra.md +270 -0
  19. marsys-0.1.0/docs/api/overview.md +514 -0
  20. marsys-0.1.0/docs/api/rules.md +562 -0
  21. marsys-0.1.0/docs/api/state.md +497 -0
  22. marsys-0.1.0/docs/api/tools.md +537 -0
  23. marsys-0.1.0/docs/api/topology.md +450 -0
  24. marsys-0.1.0/docs/api/validation.md +526 -0
  25. marsys-0.1.0/docs/assets/css/main.css +661 -0
  26. marsys-0.1.0/docs/assets/js/main.js +97 -0
  27. marsys-0.1.0/docs/concepts/advanced/topology.md +743 -0
  28. marsys-0.1.0/docs/concepts/agents.md +668 -0
  29. marsys-0.1.0/docs/concepts/browser-automation.md +916 -0
  30. marsys-0.1.0/docs/concepts/communication.md +689 -0
  31. marsys-0.1.0/docs/concepts/custom-agents.md +731 -0
  32. marsys-0.1.0/docs/concepts/error-handling.md +712 -0
  33. marsys-0.1.0/docs/concepts/learning-agents.md +324 -0
  34. marsys-0.1.0/docs/concepts/memory.md +273 -0
  35. marsys-0.1.0/docs/concepts/messages.md +659 -0
  36. marsys-0.1.0/docs/concepts/models.md +785 -0
  37. marsys-0.1.0/docs/concepts/overview.md +379 -0
  38. marsys-0.1.0/docs/concepts/registry.md +562 -0
  39. marsys-0.1.0/docs/concepts/specialized-agents.md +354 -0
  40. marsys-0.1.0/docs/concepts/state-management.md +230 -0
  41. marsys-0.1.0/docs/concepts/tools.md +1386 -0
  42. marsys-0.1.0/docs/contributing/index.md +425 -0
  43. marsys-0.1.0/docs/getting-started/configuration.md +510 -0
  44. marsys-0.1.0/docs/getting-started/first-agent.md +703 -0
  45. marsys-0.1.0/docs/getting-started/index.md +311 -0
  46. marsys-0.1.0/docs/getting-started/installation.md +490 -0
  47. marsys-0.1.0/docs/getting-started/quick-start.md +384 -0
  48. marsys-0.1.0/docs/guides/built-in-tools.md +574 -0
  49. marsys-0.1.0/docs/guides/file-operations.md +1507 -0
  50. marsys-0.1.0/docs/guides/multimodal-agents.md +819 -0
  51. marsys-0.1.0/docs/guides/specialized-tools.md +489 -0
  52. marsys-0.1.0/docs/guides/steering-and-error-recovery.md +676 -0
  53. marsys-0.1.0/docs/index.md +286 -0
  54. marsys-0.1.0/docs/legal/LICENSING.md +252 -0
  55. marsys-0.1.0/docs/project/overview.md +252 -0
  56. marsys-0.1.0/docs/use-cases/index.md +395 -0
  57. marsys-0.1.0/examples/00_documentation_examples/01_getting_started_1.py +35 -0
  58. marsys-0.1.0/examples/00_documentation_examples/02_quick_start_1.py +18 -0
  59. marsys-0.1.0/examples/00_documentation_examples/02_quick_start_2.py +26 -0
  60. marsys-0.1.0/examples/01_IP_Valuation/02_valuation_methodology.md +1618 -0
  61. marsys-0.1.0/examples/01_IP_Valuation/03_PATENT_VALUATION_METHODOLOGY_FREE_DATA.md +1894 -0
  62. marsys-0.1.0/examples/01_IP_Valuation/03_patent_valuation_methodology.md +2275 -0
  63. marsys-0.1.0/examples/01_IP_Valuation/04_AGENT_ARCHITECTURE_FLOWCHART.md +446 -0
  64. marsys-0.1.0/examples/01_IP_Valuation/05_BACKWARD_DEDUCTION_AGENT_DESIGN.md +1381 -0
  65. marsys-0.1.0/examples/01_IP_Valuation/06_IMPLEMENTATION_SPECIFICATIONS.md +1343 -0
  66. marsys-0.1.0/examples/01_IP_Valuation/API_RESEARCH_FINDINGS.md +326 -0
  67. marsys-0.1.0/examples/01_IP_Valuation/DATA_REQUIREMENTS_AND_SOURCES.md +745 -0
  68. marsys-0.1.0/examples/01_IP_Valuation/patent_valuation_agents_definition.py +486 -0
  69. marsys-0.1.0/examples/01_IP_Valuation/patent_valuation_framework.md +1282 -0
  70. marsys-0.1.0/examples/01_IP_Valuation/patent_valuation_system.py +1794 -0
  71. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/01_patent_data.md +540 -0
  72. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/03_application_research.md +543 -0
  73. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/05_financial_data.md +102 -0
  74. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/06_patent_strength.md +332 -0
  75. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/07_attribution_estimate.md +225 -0
  76. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/08_commercialization_assessment.md +208 -0
  77. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/09_discount_rate.md +144 -0
  78. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/10_valuation_calculation.md +285 -0
  79. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/11_final_report.md +1398 -0
  80. marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/patent_valuation_report.md +59 -0
  81. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/01_patent_data.md +451 -0
  82. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/02_patent_analysis.md +292 -0
  83. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/03_application_research.md +360 -0
  84. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/04_market_sizing.md +464 -0
  85. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/05_financial_data.md +191 -0
  86. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/06_patent_strength.md +337 -0
  87. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/08_commercialization_assessment.md +375 -0
  88. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/09_discount_rate.md +150 -0
  89. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/10_valuation_calculation.md +250 -0
  90. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/11_final_valuation_report.md +1127 -0
  91. marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/patent_valuation_report.md +102 -0
  92. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/01_patent_data.md +367 -0
  93. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/02_patent_analysis.md +335 -0
  94. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/03_application_research.md +406 -0
  95. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/04_market_sizing.md +425 -0
  96. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/05_financial_data.md +184 -0
  97. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/06_patent_strength.md +337 -0
  98. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/07_attribution_estimate.md +177 -0
  99. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/08_commercialization_assessment.md +239 -0
  100. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/10_valuation_calculation.md +357 -0
  101. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/11_final_report.md +1575 -0
  102. marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/patent_valuation_report.md +93 -0
  103. marsys-0.1.0/examples/01_IP_Valuation/test_tools.py +479 -0
  104. marsys-0.1.0/examples/README.md +217 -0
  105. marsys-0.1.0/examples/anthropic_code_review_example.py +674 -0
  106. marsys-0.1.0/examples/demo_element_detection_highlighting.py +162 -0
  107. marsys-0.1.0/examples/enhanced_terminal_demo.py +325 -0
  108. marsys-0.1.0/examples/example_01_Deep_Research.py +202 -0
  109. marsys-0.1.0/examples/example_01_Deep_Research_multi-agent.py +799 -0
  110. marsys-0.1.0/examples/example_01_Deep_Research_simple.py +168 -0
  111. marsys-0.1.0/examples/example_01_Deep_Research_with_pool.py +209 -0
  112. marsys-0.1.0/examples/example_02_Advanced_Deep_Research.py +671 -0
  113. marsys-0.1.0/examples/example_02_Financial_News_Video_Maker.py +1002 -0
  114. marsys-0.1.0/examples/example_02_Google_Search_Multi_Tab_Research.py +331 -0
  115. marsys-0.1.0/examples/example_02_Simple_Deep_Research.py +536 -0
  116. marsys-0.1.0/examples/example_02_Simple_Google_Search.py +262 -0
  117. marsys-0.1.0/examples/example_02_local_models.py +153 -0
  118. marsys-0.1.0/examples/example_schema_validation.py +320 -0
  119. marsys-0.1.0/examples/example_simple_user_interaction.py +208 -0
  120. marsys-0.1.0/examples/logging_demo.py +238 -0
  121. marsys-0.1.0/examples/mixed_providers_debate_example.py +707 -0
  122. marsys-0.1.0/examples/notebooks/test_browser_agent_google.py +620 -0
  123. marsys-0.1.0/examples/openai_advanced_features_example.py +556 -0
  124. marsys-0.1.0/examples/openai_research_team_example.py +533 -0
  125. marsys-0.1.0/examples/real_world/README.md +306 -0
  126. marsys-0.1.0/examples/real_world/__init__.py +10 -0
  127. marsys-0.1.0/examples/real_world/example_checkpoint_workflow.py +437 -0
  128. marsys-0.1.0/examples/real_world/example_deep_research_by_Kasra_2.py +860 -0
  129. marsys-0.1.0/examples/real_world/example_deep_research_with_pools.py +377 -0
  130. marsys-0.1.0/examples/real_world/example_hierarchical_dev_team.py +482 -0
  131. marsys-0.1.0/examples/real_world/example_hub_spoke_research.py +302 -0
  132. marsys-0.1.0/examples/real_world/example_mixed_content_pipeline.py +386 -0
  133. marsys-0.1.0/examples/real_world/example_parallel_market_analysis.py +1194 -0
  134. marsys-0.1.0/examples/real_world/example_pausable_workflow.py +399 -0
  135. marsys-0.1.0/examples/real_world/example_swarm_optimization.py +407 -0
  136. marsys-0.1.0/examples/real_world/examples/real_world/output/deep-research-responses.txt +746 -0
  137. marsys-0.1.0/examples/real_world/examples/real_world/output/deep_research_20250816_161851_report.md +7 -0
  138. marsys-0.1.0/examples/real_world/output/agent_responses_20250903_163747.txt +8 -0
  139. marsys-0.1.0/examples/real_world/output/deep-research-responses.txt +495 -0
  140. marsys-0.1.0/examples/real_world/output/deep_research_20250823_170003_report.md +16 -0
  141. marsys-0.1.0/examples/real_world/output/deep_research_report_20250823_170002.md +61 -0
  142. marsys-0.1.0/examples/real_world/requirements.txt +19 -0
  143. marsys-0.1.0/examples/router_integration_example.py +261 -0
  144. marsys-0.1.0/examples/textual_dashboard_demo.py +232 -0
  145. marsys-0.1.0/examples/three_way_topology_demo.py +237 -0
  146. marsys-0.1.0/examples/user_communication_demo.py +366 -0
  147. marsys-0.1.0/examples/user_node_patterns.py +367 -0
  148. marsys-0.1.0/pyproject.toml +181 -0
  149. marsys-0.1.0/requirements.txt +99 -0
  150. marsys-0.1.0/setup.cfg +4 -0
  151. marsys-0.1.0/setup.py +199 -0
  152. marsys-0.1.0/src/marsys/__init__.py +63 -0
  153. marsys-0.1.0/src/marsys/agents/__init__.py +51 -0
  154. marsys-0.1.0/src/marsys/agents/agent_pool.py +559 -0
  155. marsys-0.1.0/src/marsys/agents/agents.py +4339 -0
  156. marsys-0.1.0/src/marsys/agents/browser_agent.py +2118 -0
  157. marsys-0.1.0/src/marsys/agents/browser_agent_legacy.py +570 -0
  158. marsys-0.1.0/src/marsys/agents/browser_agent_legacy2.py +570 -0
  159. marsys-0.1.0/src/marsys/agents/exceptions.py +1886 -0
  160. marsys-0.1.0/src/marsys/agents/file_operation_agent.py +207 -0
  161. marsys-0.1.0/src/marsys/agents/learnable_agents.py +682 -0
  162. marsys-0.1.0/src/marsys/agents/memory.py +1920 -0
  163. marsys-0.1.0/src/marsys/agents/memory_strategies.py +384 -0
  164. marsys-0.1.0/src/marsys/agents/pool_factory.py +308 -0
  165. marsys-0.1.0/src/marsys/agents/registry.py +585 -0
  166. marsys-0.1.0/src/marsys/agents/utils.py +359 -0
  167. marsys-0.1.0/src/marsys/agents/web_search_agent.py +350 -0
  168. marsys-0.1.0/src/marsys/coordination/__init__.py +89 -0
  169. marsys-0.1.0/src/marsys/coordination/branches/__init__.py +40 -0
  170. marsys-0.1.0/src/marsys/coordination/branches/types.py +307 -0
  171. marsys-0.1.0/src/marsys/coordination/communication/__init__.py +26 -0
  172. marsys-0.1.0/src/marsys/coordination/communication/channels/__init__.py +9 -0
  173. marsys-0.1.0/src/marsys/coordination/communication/channels/enhanced_terminal.py +636 -0
  174. marsys-0.1.0/src/marsys/coordination/communication/channels/terminal.py +245 -0
  175. marsys-0.1.0/src/marsys/coordination/communication/channels/web.py +320 -0
  176. marsys-0.1.0/src/marsys/coordination/communication/core.py +130 -0
  177. marsys-0.1.0/src/marsys/coordination/communication/manager.py +594 -0
  178. marsys-0.1.0/src/marsys/coordination/communication/user_node_handler.py +816 -0
  179. marsys-0.1.0/src/marsys/coordination/config.py +356 -0
  180. marsys-0.1.0/src/marsys/coordination/configs/__init__.py +6 -0
  181. marsys-0.1.0/src/marsys/coordination/configs/auto_run.py +110 -0
  182. marsys-0.1.0/src/marsys/coordination/context_manager.py +536 -0
  183. marsys-0.1.0/src/marsys/coordination/event_bus.py +136 -0
  184. marsys-0.1.0/src/marsys/coordination/execution/__init__.py +23 -0
  185. marsys-0.1.0/src/marsys/coordination/execution/branch_executor.py +2353 -0
  186. marsys-0.1.0/src/marsys/coordination/execution/branch_spawner.py +2922 -0
  187. marsys-0.1.0/src/marsys/coordination/execution/step_executor.py +1835 -0
  188. marsys-0.1.0/src/marsys/coordination/execution/tool_executor.py +409 -0
  189. marsys-0.1.0/src/marsys/coordination/orchestra.py +1486 -0
  190. marsys-0.1.0/src/marsys/coordination/routing/__init__.py +24 -0
  191. marsys-0.1.0/src/marsys/coordination/routing/router.py +687 -0
  192. marsys-0.1.0/src/marsys/coordination/routing/types.py +98 -0
  193. marsys-0.1.0/src/marsys/coordination/rules/__init__.py +43 -0
  194. marsys-0.1.0/src/marsys/coordination/rules/basic_rules.py +1141 -0
  195. marsys-0.1.0/src/marsys/coordination/rules/rule_factory.py +213 -0
  196. marsys-0.1.0/src/marsys/coordination/rules/rules_engine.py +552 -0
  197. marsys-0.1.0/src/marsys/coordination/state/__init__.py +22 -0
  198. marsys-0.1.0/src/marsys/coordination/state/checkpoint.py +378 -0
  199. marsys-0.1.0/src/marsys/coordination/state/state_manager.py +593 -0
  200. marsys-0.1.0/src/marsys/coordination/status/__init__.py +32 -0
  201. marsys-0.1.0/src/marsys/coordination/status/channels.py +663 -0
  202. marsys-0.1.0/src/marsys/coordination/status/events.py +132 -0
  203. marsys-0.1.0/src/marsys/coordination/status/manager.py +185 -0
  204. marsys-0.1.0/src/marsys/coordination/steering/__init__.py +19 -0
  205. marsys-0.1.0/src/marsys/coordination/steering/manager.py +350 -0
  206. marsys-0.1.0/src/marsys/coordination/topology/__init__.py +42 -0
  207. marsys-0.1.0/src/marsys/coordination/topology/analyzer.py +438 -0
  208. marsys-0.1.0/src/marsys/coordination/topology/converters/__init__.py +22 -0
  209. marsys-0.1.0/src/marsys/coordination/topology/converters/object_converter.py +163 -0
  210. marsys-0.1.0/src/marsys/coordination/topology/converters/parsing.py +306 -0
  211. marsys-0.1.0/src/marsys/coordination/topology/converters/pattern_converter.py +331 -0
  212. marsys-0.1.0/src/marsys/coordination/topology/converters/string_converter.py +146 -0
  213. marsys-0.1.0/src/marsys/coordination/topology/core.py +522 -0
  214. marsys-0.1.0/src/marsys/coordination/topology/graph.py +975 -0
  215. marsys-0.1.0/src/marsys/coordination/topology/patterns.py +258 -0
  216. marsys-0.1.0/src/marsys/coordination/validation/__init__.py +27 -0
  217. marsys-0.1.0/src/marsys/coordination/validation/response_validator.py +1236 -0
  218. marsys-0.1.0/src/marsys/coordination/validation/types.py +94 -0
  219. marsys-0.1.0/src/marsys/environment/__init__.py +10 -0
  220. marsys-0.1.0/src/marsys/environment/bash_tools.py +862 -0
  221. marsys-0.1.0/src/marsys/environment/browser_utils.py +111 -0
  222. marsys-0.1.0/src/marsys/environment/file_operations/__init__.py +50 -0
  223. marsys-0.1.0/src/marsys/environment/file_operations/base.py +291 -0
  224. marsys-0.1.0/src/marsys/environment/file_operations/config.py +536 -0
  225. marsys-0.1.0/src/marsys/environment/file_operations/core.py +904 -0
  226. marsys-0.1.0/src/marsys/environment/file_operations/data_models.py +727 -0
  227. marsys-0.1.0/src/marsys/environment/file_operations/editors.py +626 -0
  228. marsys-0.1.0/src/marsys/environment/file_operations/handlers/__init__.py +11 -0
  229. marsys-0.1.0/src/marsys/environment/file_operations/handlers/base.py +5 -0
  230. marsys-0.1.0/src/marsys/environment/file_operations/handlers/image_handler.py +225 -0
  231. marsys-0.1.0/src/marsys/environment/file_operations/handlers/pdf_handler.py +339 -0
  232. marsys-0.1.0/src/marsys/environment/file_operations/handlers/text.py +255 -0
  233. marsys-0.1.0/src/marsys/environment/file_operations/parsers/__init__.py +8 -0
  234. marsys-0.1.0/src/marsys/environment/file_operations/parsers/pdf_extractor.py +514 -0
  235. marsys-0.1.0/src/marsys/environment/file_operations/readers.py +387 -0
  236. marsys-0.1.0/src/marsys/environment/file_operations/search.py +717 -0
  237. marsys-0.1.0/src/marsys/environment/file_operations/security.py +503 -0
  238. marsys-0.1.0/src/marsys/environment/file_operations/token_estimation.py +430 -0
  239. marsys-0.1.0/src/marsys/environment/operator.py +159 -0
  240. marsys-0.1.0/src/marsys/environment/os_controller.py +159 -0
  241. marsys-0.1.0/src/marsys/environment/search_tools.py +1133 -0
  242. marsys-0.1.0/src/marsys/environment/tool_response.py +299 -0
  243. marsys-0.1.0/src/marsys/environment/tools.py +581 -0
  244. marsys-0.1.0/src/marsys/environment/utils.py +279 -0
  245. marsys-0.1.0/src/marsys/environment/web_browser.py +6378 -0
  246. marsys-0.1.0/src/marsys/environment/web_tools.py +277 -0
  247. marsys-0.1.0/src/marsys/inference/__init__.py +0 -0
  248. marsys-0.1.0/src/marsys/learning/__init__.py +0 -0
  249. marsys-0.1.0/src/marsys/learning/rl.py +45 -0
  250. marsys-0.1.0/src/marsys/models/__init__.py +44 -0
  251. marsys-0.1.0/src/marsys/models/models.py +3440 -0
  252. marsys-0.1.0/src/marsys/models/processors.py +456 -0
  253. marsys-0.1.0/src/marsys/models/response_models.py +143 -0
  254. marsys-0.1.0/src/marsys/models/utils.py +98 -0
  255. marsys-0.1.0/src/marsys/topology/__init__.py +0 -0
  256. marsys-0.1.0/src/marsys/utils/display.py +23 -0
  257. marsys-0.1.0/src/marsys/utils/monitoring.py +39 -0
  258. marsys-0.1.0/src/marsys/utils/parsing.py +270 -0
  259. marsys-0.1.0/src/marsys/utils/schema_utils.py +1 -0
  260. marsys-0.1.0/src/marsys/utils/tokens.py +235 -0
  261. marsys-0.1.0/src/marsys.egg-info/PKG-INFO +649 -0
  262. marsys-0.1.0/src/marsys.egg-info/SOURCES.txt +266 -0
  263. marsys-0.1.0/src/marsys.egg-info/dependency_links.txt +1 -0
  264. marsys-0.1.0/src/marsys.egg-info/not-zip-safe +1 -0
  265. marsys-0.1.0/src/marsys.egg-info/requires.txt +65 -0
  266. marsys-0.1.0/src/marsys.egg-info/top_level.txt +1 -0
  267. marsys-0.1.0/tests/test_auto_run.py +363 -0
  268. marsys-0.1.0/tests/test_error_handling.py +550 -0
marsys-0.1.0/AUTHORS ADDED
@@ -0,0 +1,26 @@
1
+ # Marsys Authors and Contributors
2
+
3
+ This file lists the people who have contributed to the Marsys project.
4
+
5
+ ## Original Author and Copyright Holder
6
+
7
+ * rezaho <reza@marsys.io>
8
+
9
+ The original author is the sole copyright holder of the Marsys project.
10
+
11
+ ## Contributors
12
+
13
+ The following people have contributed code to Marsys under the Apache
14
+ License 2.0. Contributor names are listed for attribution purposes only.
15
+
16
+ **Important:** Contributors retain authorship credit but do not hold copyright
17
+ ownership unless otherwise arranged in writing. Adding contributors to this
18
+ file has no implications for copyright ownership—it is solely for attribution
19
+ and acknowledgment.
20
+
21
+ To be added to this list, please request addition when making a significant
22
+ contribution (or it will be added automatically based on git commit history).
23
+
24
+ <!-- Contributors listed alphabetically below: -->
25
+
26
+ (No additional contributors yet)
@@ -0,0 +1,211 @@
1
+ # Changelog
2
+
3
+ All notable changes to MARSYS (Multi-Agent Reasoning Systems) will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ---
9
+
10
+ ## [0.1.0-beta] - 2025-01-XX
11
+
12
+ ### 🎉 Initial Beta Release
13
+
14
+ The first public beta release of MARSYS - Multi-Agent Reasoning Systems framework.
15
+
16
+ ### ✨ Added
17
+
18
+ #### Core Framework
19
+ - **Orchestra API**: High-level coordination system for multi-agent workflows
20
+ - **Dynamic Branching**: Runtime parallel execution with automatic branch spawning and convergence
21
+ - **Three-Way Topology Definition**: Support for string notation, object-based, and pattern configurations
22
+ - **7 Pre-defined Patterns**: Hub-and-spoke, pipeline, mesh, hierarchical, star, ring, and broadcast patterns
23
+ - **Flexible Agent System**: BaseAgent class with pure execution model for predictable behavior
24
+
25
+ #### Advanced Features
26
+ - **State Persistence**: Full pause/resume capability with FileStorageBackend
27
+ - **Checkpointing System**: Save and restore execution state at critical points
28
+ - **User Interaction Nodes**: Built-in human-in-the-loop support for approval workflows
29
+ - **Rules Engine**: Flexible constraint system for timeouts, resource limits, and custom logic
30
+ - **Agent Pools**: True parallel execution with isolated agent instances
31
+ - **Memory Management**: Sophisticated conversation memory with retention policies (single_run, session, persistent)
32
+
33
+ #### Communication & Monitoring
34
+ - **Status Manager**: Real-time execution tracking with configurable verbosity levels
35
+ - **Enhanced Terminal**: Rich formatting with colors, tables, and progress indicators
36
+ - **Multi-Channel System**: Support for terminal, async, and custom communication channels
37
+ - **Error Recovery**: Intelligent error handling with routing to User nodes
38
+
39
+ #### Agent Capabilities
40
+ - **BrowserAgent**: Web automation using Playwright for scraping and interaction
41
+ - **Tool Integration**: Automatic OpenAI-compatible schema generation from Python functions
42
+ - **Multi-Model Support**: Works with OpenAI, Anthropic, Google, Groq, and local models
43
+ - **Vision Model Support**: Integration with vision-language models including Qwen-VL
44
+
45
+ #### Developer Experience
46
+ - **Comprehensive Documentation**: Full docs at marsys.io with tutorials and examples
47
+ - **10 Real-World Examples**: Practical examples covering common patterns
48
+ - **Type Safety**: Full type hints throughout the codebase
49
+ - **Testing Suite**: Comprehensive test coverage (11 core + 5 integration tests)
50
+
51
+ ### 📦 Package Structure
52
+
53
+ #### Installation Options
54
+ - **Default**: `pip install marsys` - Full framework (core + browser + ui + tools)
55
+ - **Local Models**: `pip install marsys[local-models]` - Adds PyTorch + Transformers
56
+ - **Production**: `pip install marsys[production]` - Adds vLLM + Flash Attention
57
+ - **Development**: `pip install marsys[dev]` - Everything + testing tools
58
+
59
+ #### Dependency Management
60
+ - Cleaned up requirements.txt (removed 30+ unused packages)
61
+ - Conservative version updates (only minor/patch updates)
62
+ - Modular extras system for optional features
63
+ - Transitive dependencies handled automatically
64
+
65
+ ### 🔄 Changed
66
+
67
+ - **Python Requirement**: Changed from `==3.12.*` to `>=3.12` (requires Python 3.12 or higher)
68
+ - **Package Name**: Changed from `multi-agent-ai-learning` to `marsys` for production
69
+ - **Dependency Versions**: Updated to latest stable versions (Oct 2025)
70
+ - pydantic: 2.10.6 → 2.11.9
71
+ - psutil: 7.0.0 → 7.1.0
72
+ - aiohttp: 3.9.1 → 3.12.15
73
+ - playwright: 1.51.0 → 1.55.0
74
+ - transformers: 4.49.0 → 4.54.1
75
+ - And 10+ other packages (see requirements.txt)
76
+
77
+ ### 🗑️ Deprecated
78
+
79
+ - **PyPDF2**: Replaced with `pypdf>=3.0.0` (PyPDF2 is no longer maintained)
80
+ - **AutoAWQ**: Package archived by maintainers (use alternatives like AWQ from transformers)
81
+
82
+ ### ⚠️ Known Issues
83
+
84
+ #### Pending Updates (Requires Testing)
85
+ - **python-json-logger v3**: Kept at v2.0.7 (v3.3.0 requires API compatibility testing)
86
+
87
+ #### Platform-Specific
88
+ - **Windows**: WSL recommended for best experience (native Windows support is experimental)
89
+ - **vLLM**: Linux-only (not available on macOS/Windows)
90
+ - **Flash Attention**: Requires CUDA-compatible GPU
91
+
92
+ ### 🔧 Fixed
93
+
94
+ - Memory leaks in parallel execution scenarios
95
+ - Branch synchronization issues at convergence points
96
+ - Agent pool allocation race conditions
97
+ - Error propagation in nested branches
98
+ - Context passing between sequential agents
99
+
100
+ ### 🛡️ Security
101
+
102
+ - No known security vulnerabilities
103
+ - All dependencies from trusted sources (PyPI)
104
+ - No credentials or secrets stored in package
105
+
106
+ ### 📚 Documentation
107
+
108
+ - Complete framework documentation at [marsys.io](https://marsys.io)
109
+ - API reference for all public classes and methods
110
+ - Architecture guides and design patterns
111
+ - 10 fully documented real-world examples
112
+ - Migration guides and best practices
113
+
114
+ ### 🙏 Acknowledgments
115
+
116
+ - Open-source community for invaluable feedback
117
+ - Model providers (OpenAI, Anthropic, Google) for powerful APIs
118
+ - Early adopters and testers who shaped the framework
119
+
120
+ ---
121
+
122
+ ## [Unreleased]
123
+
124
+ ### Planned for v0.2.0 (Q1 2025)
125
+
126
+ #### Performance & Scale
127
+ - [ ] Distributed execution across multiple machines
128
+ - [ ] Redis storage backend for state management
129
+ - [ ] Streaming response support for long-running tasks
130
+ - [ ] Advanced result caching and memoization
131
+
132
+ #### Intelligence & Learning
133
+ - [ ] Self-optimizing topologies based on execution history
134
+ - [ ] Agent fine-tuning within workflows
135
+ - [ ] Pattern recognition from historical executions
136
+
137
+ #### Developer Experience
138
+ - [ ] Visual workflow designer UI
139
+ - [ ] OpenTelemetry integration for observability
140
+ - [ ] CI/CD templates and deployment guides
141
+ - [ ] Performance benchmarking suite
142
+
143
+ ---
144
+
145
+ ## Migration Guides
146
+
147
+ ### From Development Version to v0.1.0
148
+
149
+ If you were using an unreleased development version:
150
+
151
+ 1. **Package Name Change**: Update imports from `src.*` to `marsys.*`
152
+ ```python
153
+ # Old
154
+ from marsys.coordination import Orchestra
155
+
156
+ # New
157
+ from marsys.coordination import Orchestra
158
+ ```
159
+
160
+ 2. **Dependency Updates**: Reinstall with new package structure
161
+ ```bash
162
+ pip uninstall multi-agent-ai-learning
163
+ pip install marsys[local-models]
164
+ ```
165
+
166
+ 3. **PyPDF2 → pypdf**: If you were using PyPDF2 directly
167
+ ```python
168
+ # Old
169
+ from PyPDF2 import PdfReader
170
+
171
+ # New (compatible API)
172
+ from pypdf import PdfReader
173
+ ```
174
+
175
+ 4. **Python Version**: Ensure Python >=3.9 (previously required 3.12)
176
+
177
+ ### Breaking Changes
178
+
179
+ None - this is the first public release.
180
+
181
+ ---
182
+
183
+ ## Version History Summary
184
+
185
+ | Version | Date | Status | Highlights |
186
+ |---------|------|--------|------------|
187
+ | 0.1.0-beta | 2025-01 | Released | Initial public beta with full framework |
188
+ | 0.2.0 | TBD | Planned | Performance, streaming, distributed execution |
189
+
190
+ ---
191
+
192
+ ## How to Contribute
193
+
194
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on:
195
+ - Reporting bugs
196
+ - Suggesting features
197
+ - Submitting pull requests
198
+ - Development setup
199
+
200
+ ---
201
+
202
+ ## Stay Updated
203
+
204
+ - 🌟 Star the repo: [github.com/rezaho/MARSYS](https://github.com/rezaho/MARSYS)
205
+ - 📢 Watch releases for updates
206
+ - 💬 Join discussions: [github.com/rezaho/MARSYS/discussions](https://github.com/rezaho/MARSYS/discussions)
207
+ - 🐛 Report issues: [github.com/rezaho/MARSYS/issues](https://github.com/rezaho/MARSYS/issues)
208
+
209
+ ---
210
+
211
+ **Note**: This changelog will be updated with the exact release date once v0.1.0 is published to PyPI.