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.
- marsys-0.1.0/AUTHORS +26 -0
- marsys-0.1.0/CHANGELOG.md +211 -0
- marsys-0.1.0/CLAUDE.md +1075 -0
- marsys-0.1.0/LICENSE +202 -0
- marsys-0.1.0/MANIFEST.in +69 -0
- marsys-0.1.0/Multi-Agent_Patterns.md +816 -0
- marsys-0.1.0/PKG-INFO +649 -0
- marsys-0.1.0/README.md +549 -0
- marsys-0.1.0/config/logging.yaml +124 -0
- marsys-0.1.0/docs/CLA.md +149 -0
- marsys-0.1.0/docs/CLA_SETUP_GUIDE.md +370 -0
- marsys-0.1.0/docs/api/agent-class.md +701 -0
- marsys-0.1.0/docs/api/communication.md +583 -0
- marsys-0.1.0/docs/api/configuration.md +632 -0
- marsys-0.1.0/docs/api/execution.md +467 -0
- marsys-0.1.0/docs/api/memory.md +372 -0
- marsys-0.1.0/docs/api/models.md +861 -0
- marsys-0.1.0/docs/api/orchestra.md +270 -0
- marsys-0.1.0/docs/api/overview.md +514 -0
- marsys-0.1.0/docs/api/rules.md +562 -0
- marsys-0.1.0/docs/api/state.md +497 -0
- marsys-0.1.0/docs/api/tools.md +537 -0
- marsys-0.1.0/docs/api/topology.md +450 -0
- marsys-0.1.0/docs/api/validation.md +526 -0
- marsys-0.1.0/docs/assets/css/main.css +661 -0
- marsys-0.1.0/docs/assets/js/main.js +97 -0
- marsys-0.1.0/docs/concepts/advanced/topology.md +743 -0
- marsys-0.1.0/docs/concepts/agents.md +668 -0
- marsys-0.1.0/docs/concepts/browser-automation.md +916 -0
- marsys-0.1.0/docs/concepts/communication.md +689 -0
- marsys-0.1.0/docs/concepts/custom-agents.md +731 -0
- marsys-0.1.0/docs/concepts/error-handling.md +712 -0
- marsys-0.1.0/docs/concepts/learning-agents.md +324 -0
- marsys-0.1.0/docs/concepts/memory.md +273 -0
- marsys-0.1.0/docs/concepts/messages.md +659 -0
- marsys-0.1.0/docs/concepts/models.md +785 -0
- marsys-0.1.0/docs/concepts/overview.md +379 -0
- marsys-0.1.0/docs/concepts/registry.md +562 -0
- marsys-0.1.0/docs/concepts/specialized-agents.md +354 -0
- marsys-0.1.0/docs/concepts/state-management.md +230 -0
- marsys-0.1.0/docs/concepts/tools.md +1386 -0
- marsys-0.1.0/docs/contributing/index.md +425 -0
- marsys-0.1.0/docs/getting-started/configuration.md +510 -0
- marsys-0.1.0/docs/getting-started/first-agent.md +703 -0
- marsys-0.1.0/docs/getting-started/index.md +311 -0
- marsys-0.1.0/docs/getting-started/installation.md +490 -0
- marsys-0.1.0/docs/getting-started/quick-start.md +384 -0
- marsys-0.1.0/docs/guides/built-in-tools.md +574 -0
- marsys-0.1.0/docs/guides/file-operations.md +1507 -0
- marsys-0.1.0/docs/guides/multimodal-agents.md +819 -0
- marsys-0.1.0/docs/guides/specialized-tools.md +489 -0
- marsys-0.1.0/docs/guides/steering-and-error-recovery.md +676 -0
- marsys-0.1.0/docs/index.md +286 -0
- marsys-0.1.0/docs/legal/LICENSING.md +252 -0
- marsys-0.1.0/docs/project/overview.md +252 -0
- marsys-0.1.0/docs/use-cases/index.md +395 -0
- marsys-0.1.0/examples/00_documentation_examples/01_getting_started_1.py +35 -0
- marsys-0.1.0/examples/00_documentation_examples/02_quick_start_1.py +18 -0
- marsys-0.1.0/examples/00_documentation_examples/02_quick_start_2.py +26 -0
- marsys-0.1.0/examples/01_IP_Valuation/02_valuation_methodology.md +1618 -0
- marsys-0.1.0/examples/01_IP_Valuation/03_PATENT_VALUATION_METHODOLOGY_FREE_DATA.md +1894 -0
- marsys-0.1.0/examples/01_IP_Valuation/03_patent_valuation_methodology.md +2275 -0
- marsys-0.1.0/examples/01_IP_Valuation/04_AGENT_ARCHITECTURE_FLOWCHART.md +446 -0
- marsys-0.1.0/examples/01_IP_Valuation/05_BACKWARD_DEDUCTION_AGENT_DESIGN.md +1381 -0
- marsys-0.1.0/examples/01_IP_Valuation/06_IMPLEMENTATION_SPECIFICATIONS.md +1343 -0
- marsys-0.1.0/examples/01_IP_Valuation/API_RESEARCH_FINDINGS.md +326 -0
- marsys-0.1.0/examples/01_IP_Valuation/DATA_REQUIREMENTS_AND_SOURCES.md +745 -0
- marsys-0.1.0/examples/01_IP_Valuation/patent_valuation_agents_definition.py +486 -0
- marsys-0.1.0/examples/01_IP_Valuation/patent_valuation_framework.md +1282 -0
- marsys-0.1.0/examples/01_IP_Valuation/patent_valuation_system.py +1794 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/01_patent_data.md +540 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/03_application_research.md +543 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/05_financial_data.md +102 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/06_patent_strength.md +332 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/07_attribution_estimate.md +225 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/08_commercialization_assessment.md +208 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/09_discount_rate.md +144 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/10_valuation_calculation.md +285 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/11_final_report.md +1398 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251114_220432/patent_valuation_report.md +59 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/01_patent_data.md +451 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/02_patent_analysis.md +292 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/03_application_research.md +360 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/04_market_sizing.md +464 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/05_financial_data.md +191 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/06_patent_strength.md +337 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/08_commercialization_assessment.md +375 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/09_discount_rate.md +150 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/10_valuation_calculation.md +250 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/11_final_valuation_report.md +1127 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251115_000251/patent_valuation_report.md +102 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/01_patent_data.md +367 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/02_patent_analysis.md +335 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/03_application_research.md +406 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/04_market_sizing.md +425 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/05_financial_data.md +184 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/06_patent_strength.md +337 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/07_attribution_estimate.md +177 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/08_commercialization_assessment.md +239 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/10_valuation_calculation.md +357 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/11_final_report.md +1575 -0
- marsys-0.1.0/examples/01_IP_Valuation/results/20251116_193256/patent_valuation_report.md +93 -0
- marsys-0.1.0/examples/01_IP_Valuation/test_tools.py +479 -0
- marsys-0.1.0/examples/README.md +217 -0
- marsys-0.1.0/examples/anthropic_code_review_example.py +674 -0
- marsys-0.1.0/examples/demo_element_detection_highlighting.py +162 -0
- marsys-0.1.0/examples/enhanced_terminal_demo.py +325 -0
- marsys-0.1.0/examples/example_01_Deep_Research.py +202 -0
- marsys-0.1.0/examples/example_01_Deep_Research_multi-agent.py +799 -0
- marsys-0.1.0/examples/example_01_Deep_Research_simple.py +168 -0
- marsys-0.1.0/examples/example_01_Deep_Research_with_pool.py +209 -0
- marsys-0.1.0/examples/example_02_Advanced_Deep_Research.py +671 -0
- marsys-0.1.0/examples/example_02_Financial_News_Video_Maker.py +1002 -0
- marsys-0.1.0/examples/example_02_Google_Search_Multi_Tab_Research.py +331 -0
- marsys-0.1.0/examples/example_02_Simple_Deep_Research.py +536 -0
- marsys-0.1.0/examples/example_02_Simple_Google_Search.py +262 -0
- marsys-0.1.0/examples/example_02_local_models.py +153 -0
- marsys-0.1.0/examples/example_schema_validation.py +320 -0
- marsys-0.1.0/examples/example_simple_user_interaction.py +208 -0
- marsys-0.1.0/examples/logging_demo.py +238 -0
- marsys-0.1.0/examples/mixed_providers_debate_example.py +707 -0
- marsys-0.1.0/examples/notebooks/test_browser_agent_google.py +620 -0
- marsys-0.1.0/examples/openai_advanced_features_example.py +556 -0
- marsys-0.1.0/examples/openai_research_team_example.py +533 -0
- marsys-0.1.0/examples/real_world/README.md +306 -0
- marsys-0.1.0/examples/real_world/__init__.py +10 -0
- marsys-0.1.0/examples/real_world/example_checkpoint_workflow.py +437 -0
- marsys-0.1.0/examples/real_world/example_deep_research_by_Kasra_2.py +860 -0
- marsys-0.1.0/examples/real_world/example_deep_research_with_pools.py +377 -0
- marsys-0.1.0/examples/real_world/example_hierarchical_dev_team.py +482 -0
- marsys-0.1.0/examples/real_world/example_hub_spoke_research.py +302 -0
- marsys-0.1.0/examples/real_world/example_mixed_content_pipeline.py +386 -0
- marsys-0.1.0/examples/real_world/example_parallel_market_analysis.py +1194 -0
- marsys-0.1.0/examples/real_world/example_pausable_workflow.py +399 -0
- marsys-0.1.0/examples/real_world/example_swarm_optimization.py +407 -0
- marsys-0.1.0/examples/real_world/examples/real_world/output/deep-research-responses.txt +746 -0
- marsys-0.1.0/examples/real_world/examples/real_world/output/deep_research_20250816_161851_report.md +7 -0
- marsys-0.1.0/examples/real_world/output/agent_responses_20250903_163747.txt +8 -0
- marsys-0.1.0/examples/real_world/output/deep-research-responses.txt +495 -0
- marsys-0.1.0/examples/real_world/output/deep_research_20250823_170003_report.md +16 -0
- marsys-0.1.0/examples/real_world/output/deep_research_report_20250823_170002.md +61 -0
- marsys-0.1.0/examples/real_world/requirements.txt +19 -0
- marsys-0.1.0/examples/router_integration_example.py +261 -0
- marsys-0.1.0/examples/textual_dashboard_demo.py +232 -0
- marsys-0.1.0/examples/three_way_topology_demo.py +237 -0
- marsys-0.1.0/examples/user_communication_demo.py +366 -0
- marsys-0.1.0/examples/user_node_patterns.py +367 -0
- marsys-0.1.0/pyproject.toml +181 -0
- marsys-0.1.0/requirements.txt +99 -0
- marsys-0.1.0/setup.cfg +4 -0
- marsys-0.1.0/setup.py +199 -0
- marsys-0.1.0/src/marsys/__init__.py +63 -0
- marsys-0.1.0/src/marsys/agents/__init__.py +51 -0
- marsys-0.1.0/src/marsys/agents/agent_pool.py +559 -0
- marsys-0.1.0/src/marsys/agents/agents.py +4339 -0
- marsys-0.1.0/src/marsys/agents/browser_agent.py +2118 -0
- marsys-0.1.0/src/marsys/agents/browser_agent_legacy.py +570 -0
- marsys-0.1.0/src/marsys/agents/browser_agent_legacy2.py +570 -0
- marsys-0.1.0/src/marsys/agents/exceptions.py +1886 -0
- marsys-0.1.0/src/marsys/agents/file_operation_agent.py +207 -0
- marsys-0.1.0/src/marsys/agents/learnable_agents.py +682 -0
- marsys-0.1.0/src/marsys/agents/memory.py +1920 -0
- marsys-0.1.0/src/marsys/agents/memory_strategies.py +384 -0
- marsys-0.1.0/src/marsys/agents/pool_factory.py +308 -0
- marsys-0.1.0/src/marsys/agents/registry.py +585 -0
- marsys-0.1.0/src/marsys/agents/utils.py +359 -0
- marsys-0.1.0/src/marsys/agents/web_search_agent.py +350 -0
- marsys-0.1.0/src/marsys/coordination/__init__.py +89 -0
- marsys-0.1.0/src/marsys/coordination/branches/__init__.py +40 -0
- marsys-0.1.0/src/marsys/coordination/branches/types.py +307 -0
- marsys-0.1.0/src/marsys/coordination/communication/__init__.py +26 -0
- marsys-0.1.0/src/marsys/coordination/communication/channels/__init__.py +9 -0
- marsys-0.1.0/src/marsys/coordination/communication/channels/enhanced_terminal.py +636 -0
- marsys-0.1.0/src/marsys/coordination/communication/channels/terminal.py +245 -0
- marsys-0.1.0/src/marsys/coordination/communication/channels/web.py +320 -0
- marsys-0.1.0/src/marsys/coordination/communication/core.py +130 -0
- marsys-0.1.0/src/marsys/coordination/communication/manager.py +594 -0
- marsys-0.1.0/src/marsys/coordination/communication/user_node_handler.py +816 -0
- marsys-0.1.0/src/marsys/coordination/config.py +356 -0
- marsys-0.1.0/src/marsys/coordination/configs/__init__.py +6 -0
- marsys-0.1.0/src/marsys/coordination/configs/auto_run.py +110 -0
- marsys-0.1.0/src/marsys/coordination/context_manager.py +536 -0
- marsys-0.1.0/src/marsys/coordination/event_bus.py +136 -0
- marsys-0.1.0/src/marsys/coordination/execution/__init__.py +23 -0
- marsys-0.1.0/src/marsys/coordination/execution/branch_executor.py +2353 -0
- marsys-0.1.0/src/marsys/coordination/execution/branch_spawner.py +2922 -0
- marsys-0.1.0/src/marsys/coordination/execution/step_executor.py +1835 -0
- marsys-0.1.0/src/marsys/coordination/execution/tool_executor.py +409 -0
- marsys-0.1.0/src/marsys/coordination/orchestra.py +1486 -0
- marsys-0.1.0/src/marsys/coordination/routing/__init__.py +24 -0
- marsys-0.1.0/src/marsys/coordination/routing/router.py +687 -0
- marsys-0.1.0/src/marsys/coordination/routing/types.py +98 -0
- marsys-0.1.0/src/marsys/coordination/rules/__init__.py +43 -0
- marsys-0.1.0/src/marsys/coordination/rules/basic_rules.py +1141 -0
- marsys-0.1.0/src/marsys/coordination/rules/rule_factory.py +213 -0
- marsys-0.1.0/src/marsys/coordination/rules/rules_engine.py +552 -0
- marsys-0.1.0/src/marsys/coordination/state/__init__.py +22 -0
- marsys-0.1.0/src/marsys/coordination/state/checkpoint.py +378 -0
- marsys-0.1.0/src/marsys/coordination/state/state_manager.py +593 -0
- marsys-0.1.0/src/marsys/coordination/status/__init__.py +32 -0
- marsys-0.1.0/src/marsys/coordination/status/channels.py +663 -0
- marsys-0.1.0/src/marsys/coordination/status/events.py +132 -0
- marsys-0.1.0/src/marsys/coordination/status/manager.py +185 -0
- marsys-0.1.0/src/marsys/coordination/steering/__init__.py +19 -0
- marsys-0.1.0/src/marsys/coordination/steering/manager.py +350 -0
- marsys-0.1.0/src/marsys/coordination/topology/__init__.py +42 -0
- marsys-0.1.0/src/marsys/coordination/topology/analyzer.py +438 -0
- marsys-0.1.0/src/marsys/coordination/topology/converters/__init__.py +22 -0
- marsys-0.1.0/src/marsys/coordination/topology/converters/object_converter.py +163 -0
- marsys-0.1.0/src/marsys/coordination/topology/converters/parsing.py +306 -0
- marsys-0.1.0/src/marsys/coordination/topology/converters/pattern_converter.py +331 -0
- marsys-0.1.0/src/marsys/coordination/topology/converters/string_converter.py +146 -0
- marsys-0.1.0/src/marsys/coordination/topology/core.py +522 -0
- marsys-0.1.0/src/marsys/coordination/topology/graph.py +975 -0
- marsys-0.1.0/src/marsys/coordination/topology/patterns.py +258 -0
- marsys-0.1.0/src/marsys/coordination/validation/__init__.py +27 -0
- marsys-0.1.0/src/marsys/coordination/validation/response_validator.py +1236 -0
- marsys-0.1.0/src/marsys/coordination/validation/types.py +94 -0
- marsys-0.1.0/src/marsys/environment/__init__.py +10 -0
- marsys-0.1.0/src/marsys/environment/bash_tools.py +862 -0
- marsys-0.1.0/src/marsys/environment/browser_utils.py +111 -0
- marsys-0.1.0/src/marsys/environment/file_operations/__init__.py +50 -0
- marsys-0.1.0/src/marsys/environment/file_operations/base.py +291 -0
- marsys-0.1.0/src/marsys/environment/file_operations/config.py +536 -0
- marsys-0.1.0/src/marsys/environment/file_operations/core.py +904 -0
- marsys-0.1.0/src/marsys/environment/file_operations/data_models.py +727 -0
- marsys-0.1.0/src/marsys/environment/file_operations/editors.py +626 -0
- marsys-0.1.0/src/marsys/environment/file_operations/handlers/__init__.py +11 -0
- marsys-0.1.0/src/marsys/environment/file_operations/handlers/base.py +5 -0
- marsys-0.1.0/src/marsys/environment/file_operations/handlers/image_handler.py +225 -0
- marsys-0.1.0/src/marsys/environment/file_operations/handlers/pdf_handler.py +339 -0
- marsys-0.1.0/src/marsys/environment/file_operations/handlers/text.py +255 -0
- marsys-0.1.0/src/marsys/environment/file_operations/parsers/__init__.py +8 -0
- marsys-0.1.0/src/marsys/environment/file_operations/parsers/pdf_extractor.py +514 -0
- marsys-0.1.0/src/marsys/environment/file_operations/readers.py +387 -0
- marsys-0.1.0/src/marsys/environment/file_operations/search.py +717 -0
- marsys-0.1.0/src/marsys/environment/file_operations/security.py +503 -0
- marsys-0.1.0/src/marsys/environment/file_operations/token_estimation.py +430 -0
- marsys-0.1.0/src/marsys/environment/operator.py +159 -0
- marsys-0.1.0/src/marsys/environment/os_controller.py +159 -0
- marsys-0.1.0/src/marsys/environment/search_tools.py +1133 -0
- marsys-0.1.0/src/marsys/environment/tool_response.py +299 -0
- marsys-0.1.0/src/marsys/environment/tools.py +581 -0
- marsys-0.1.0/src/marsys/environment/utils.py +279 -0
- marsys-0.1.0/src/marsys/environment/web_browser.py +6378 -0
- marsys-0.1.0/src/marsys/environment/web_tools.py +277 -0
- marsys-0.1.0/src/marsys/inference/__init__.py +0 -0
- marsys-0.1.0/src/marsys/learning/__init__.py +0 -0
- marsys-0.1.0/src/marsys/learning/rl.py +45 -0
- marsys-0.1.0/src/marsys/models/__init__.py +44 -0
- marsys-0.1.0/src/marsys/models/models.py +3440 -0
- marsys-0.1.0/src/marsys/models/processors.py +456 -0
- marsys-0.1.0/src/marsys/models/response_models.py +143 -0
- marsys-0.1.0/src/marsys/models/utils.py +98 -0
- marsys-0.1.0/src/marsys/topology/__init__.py +0 -0
- marsys-0.1.0/src/marsys/utils/display.py +23 -0
- marsys-0.1.0/src/marsys/utils/monitoring.py +39 -0
- marsys-0.1.0/src/marsys/utils/parsing.py +270 -0
- marsys-0.1.0/src/marsys/utils/schema_utils.py +1 -0
- marsys-0.1.0/src/marsys/utils/tokens.py +235 -0
- marsys-0.1.0/src/marsys.egg-info/PKG-INFO +649 -0
- marsys-0.1.0/src/marsys.egg-info/SOURCES.txt +266 -0
- marsys-0.1.0/src/marsys.egg-info/dependency_links.txt +1 -0
- marsys-0.1.0/src/marsys.egg-info/not-zip-safe +1 -0
- marsys-0.1.0/src/marsys.egg-info/requires.txt +65 -0
- marsys-0.1.0/src/marsys.egg-info/top_level.txt +1 -0
- marsys-0.1.0/tests/test_auto_run.py +363 -0
- 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.
|