├── .DS_Store ├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── ARCHITECTURE.md ├── MONGO-SETUP.md └── TUTORIAL.md ├── eat.png ├── eat_agent_experiences_schema.md ├── evolving_agents ├── __init__.py ├── adapters │ ├── openai_guardrails_adapter.py │ ├── openai_tool_adapter.py │ └── openai_tracing_adapter.py ├── agent_bus │ ├── __init__.py │ └── smart_agent_bus.py ├── agents │ ├── __init__.py │ ├── agent_factory.py │ ├── architect_zero.py │ ├── documentation_agent.py │ ├── intent_review_agent.py │ └── memory_manager_agent.py ├── auditing │ └── library_auditor.py ├── config.py ├── core │ ├── __init__.py │ ├── base.py │ ├── dependency_container.py │ ├── intent_review.py │ ├── llm_service.py │ ├── mongodb_client.py │ ├── smart_context.py │ └── system_agent.py ├── evolution │ └── evolution_strategist.py ├── firmware │ ├── __init__.py │ └── firmware.py ├── monitoring │ └── component_experience_tracker.py ├── providers │ ├── __init__.py │ ├── base.py │ ├── beeai_provider.py │ ├── openai_agents_evolution.py │ ├── openai_agents_provider.py │ └── registry.py ├── smart_library │ ├── __init__.py │ └── smart_library.py ├── templates │ ├── beeai_agent_template.txt │ └── beeai_tool_template.txt ├── tools │ ├── __init__.py │ ├── agent_bus │ │ ├── __init__.py │ │ ├── discover_agent_tool.py │ │ ├── register_agent_tool.py │ │ └── request_agent_tool.py │ ├── context │ │ └── context_builder_tool.py │ ├── intent_review │ │ ├── approve_plan_tool.py │ │ ├── component_selection_review_tool.py │ │ └── workflow_design_review_tool.py │ ├── internal │ │ ├── message_summarization_tool.py │ │ ├── mongo_experience_store_tool.py │ │ └── semantic_experience_search_tool.py │ ├── memory │ │ └── experience_recorder_tool.py │ ├── openai_agents │ │ ├── ab_test_openai_agent_tool.py │ │ ├── add_openai_guardrails_tool.py │ │ ├── convert_tool_format_tool.py │ │ ├── create_openai_agent_tool.py │ │ ├── evolve_openai_agent_tool.py │ │ ├── execute_openai_agent_tool.py │ │ └── openai_agent_logger.py │ ├── smart_library │ │ ├── __init__.py │ │ ├── create_component_tool.py │ │ ├── evolve_component_tool.py │ │ ├── search_component_tool.py │ │ └── task_context_tool.py │ └── tool_factory.py ├── utils │ ├── __init__.py │ ├── cache_utils.py │ ├── json_utils.py │ └── setup_templates.py └── workflow │ ├── __init__.py │ ├── generate_workflow_tool.py │ └── process_workflow_tool.py ├── examples ├── .DS_Store ├── agent_evolution │ ├── beeai_agent_evolution_demo.py │ └── openai_agent_evolution_demo.py ├── autocomplete │ └── run_autocomplete_system.py ├── forms │ └── run_conversational_form.py ├── intent_review │ └── integrated_review_demo.py ├── invoice_processing │ └── architect_zero_comprehensive_demo.py ├── self_improvement │ └── evolve_smart_library.py ├── smart_agent_bus │ └── dual_bus_demo.py ├── smart_context │ └── dual_embedding_demo.py └── smart_memory_enhancement_real_evolution_demo.py ├── requirements.txt └── setup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/README.md -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/MONGO-SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/docs/MONGO-SETUP.md -------------------------------------------------------------------------------- /docs/TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/docs/TUTORIAL.md -------------------------------------------------------------------------------- /eat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/eat.png -------------------------------------------------------------------------------- /eat_agent_experiences_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/eat_agent_experiences_schema.md -------------------------------------------------------------------------------- /evolving_agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/adapters/openai_guardrails_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/adapters/openai_guardrails_adapter.py -------------------------------------------------------------------------------- /evolving_agents/adapters/openai_tool_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/adapters/openai_tool_adapter.py -------------------------------------------------------------------------------- /evolving_agents/adapters/openai_tracing_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/adapters/openai_tracing_adapter.py -------------------------------------------------------------------------------- /evolving_agents/agent_bus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/agent_bus/smart_agent_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/agent_bus/smart_agent_bus.py -------------------------------------------------------------------------------- /evolving_agents/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/agents/__init__.py -------------------------------------------------------------------------------- /evolving_agents/agents/agent_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/agents/agent_factory.py -------------------------------------------------------------------------------- /evolving_agents/agents/architect_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/agents/architect_zero.py -------------------------------------------------------------------------------- /evolving_agents/agents/documentation_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/agents/documentation_agent.py -------------------------------------------------------------------------------- /evolving_agents/agents/intent_review_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/agents/intent_review_agent.py -------------------------------------------------------------------------------- /evolving_agents/agents/memory_manager_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/agents/memory_manager_agent.py -------------------------------------------------------------------------------- /evolving_agents/auditing/library_auditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/auditing/library_auditor.py -------------------------------------------------------------------------------- /evolving_agents/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/config.py -------------------------------------------------------------------------------- /evolving_agents/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/core/base.py -------------------------------------------------------------------------------- /evolving_agents/core/dependency_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/core/dependency_container.py -------------------------------------------------------------------------------- /evolving_agents/core/intent_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/core/intent_review.py -------------------------------------------------------------------------------- /evolving_agents/core/llm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/core/llm_service.py -------------------------------------------------------------------------------- /evolving_agents/core/mongodb_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/core/mongodb_client.py -------------------------------------------------------------------------------- /evolving_agents/core/smart_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/core/smart_context.py -------------------------------------------------------------------------------- /evolving_agents/core/system_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/core/system_agent.py -------------------------------------------------------------------------------- /evolving_agents/evolution/evolution_strategist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/evolution/evolution_strategist.py -------------------------------------------------------------------------------- /evolving_agents/firmware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/firmware/firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/firmware/firmware.py -------------------------------------------------------------------------------- /evolving_agents/monitoring/component_experience_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/monitoring/component_experience_tracker.py -------------------------------------------------------------------------------- /evolving_agents/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/providers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/providers/base.py -------------------------------------------------------------------------------- /evolving_agents/providers/beeai_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/providers/beeai_provider.py -------------------------------------------------------------------------------- /evolving_agents/providers/openai_agents_evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/providers/openai_agents_evolution.py -------------------------------------------------------------------------------- /evolving_agents/providers/openai_agents_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/providers/openai_agents_provider.py -------------------------------------------------------------------------------- /evolving_agents/providers/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/providers/registry.py -------------------------------------------------------------------------------- /evolving_agents/smart_library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/smart_library/smart_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/smart_library/smart_library.py -------------------------------------------------------------------------------- /evolving_agents/templates/beeai_agent_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/templates/beeai_agent_template.txt -------------------------------------------------------------------------------- /evolving_agents/templates/beeai_tool_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/templates/beeai_tool_template.txt -------------------------------------------------------------------------------- /evolving_agents/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/tools/agent_bus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/tools/agent_bus/discover_agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/agent_bus/discover_agent_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/agent_bus/register_agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/agent_bus/register_agent_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/agent_bus/request_agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/agent_bus/request_agent_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/context/context_builder_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/context/context_builder_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/intent_review/approve_plan_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/intent_review/approve_plan_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/intent_review/component_selection_review_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/intent_review/component_selection_review_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/intent_review/workflow_design_review_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/intent_review/workflow_design_review_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/internal/message_summarization_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/internal/message_summarization_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/internal/mongo_experience_store_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/internal/mongo_experience_store_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/internal/semantic_experience_search_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/internal/semantic_experience_search_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/memory/experience_recorder_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/memory/experience_recorder_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/openai_agents/ab_test_openai_agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/openai_agents/ab_test_openai_agent_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/openai_agents/add_openai_guardrails_tool.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/tools/openai_agents/convert_tool_format_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/openai_agents/convert_tool_format_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/openai_agents/create_openai_agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/openai_agents/create_openai_agent_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/openai_agents/evolve_openai_agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/openai_agents/evolve_openai_agent_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/openai_agents/execute_openai_agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/openai_agents/execute_openai_agent_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/openai_agents/openai_agent_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/openai_agents/openai_agent_logger.py -------------------------------------------------------------------------------- /evolving_agents/tools/smart_library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/tools/smart_library/create_component_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/smart_library/create_component_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/smart_library/evolve_component_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/smart_library/evolve_component_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/smart_library/search_component_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/smart_library/search_component_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/smart_library/task_context_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/smart_library/task_context_tool.py -------------------------------------------------------------------------------- /evolving_agents/tools/tool_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/tools/tool_factory.py -------------------------------------------------------------------------------- /evolving_agents/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/utils/__init__.py -------------------------------------------------------------------------------- /evolving_agents/utils/cache_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/utils/cache_utils.py -------------------------------------------------------------------------------- /evolving_agents/utils/json_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/utils/json_utils.py -------------------------------------------------------------------------------- /evolving_agents/utils/setup_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/utils/setup_templates.py -------------------------------------------------------------------------------- /evolving_agents/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolving_agents/workflow/generate_workflow_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/workflow/generate_workflow_tool.py -------------------------------------------------------------------------------- /evolving_agents/workflow/process_workflow_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/evolving_agents/workflow/process_workflow_tool.py -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/agent_evolution/beeai_agent_evolution_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/agent_evolution/beeai_agent_evolution_demo.py -------------------------------------------------------------------------------- /examples/agent_evolution/openai_agent_evolution_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/agent_evolution/openai_agent_evolution_demo.py -------------------------------------------------------------------------------- /examples/autocomplete/run_autocomplete_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/autocomplete/run_autocomplete_system.py -------------------------------------------------------------------------------- /examples/forms/run_conversational_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/forms/run_conversational_form.py -------------------------------------------------------------------------------- /examples/intent_review/integrated_review_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/intent_review/integrated_review_demo.py -------------------------------------------------------------------------------- /examples/invoice_processing/architect_zero_comprehensive_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/invoice_processing/architect_zero_comprehensive_demo.py -------------------------------------------------------------------------------- /examples/self_improvement/evolve_smart_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/self_improvement/evolve_smart_library.py -------------------------------------------------------------------------------- /examples/smart_agent_bus/dual_bus_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/smart_agent_bus/dual_bus_demo.py -------------------------------------------------------------------------------- /examples/smart_context/dual_embedding_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/smart_context/dual_embedding_demo.py -------------------------------------------------------------------------------- /examples/smart_memory_enhancement_real_evolution_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/examples/smart_memory_enhancement_real_evolution_demo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasmolinas/evolving-agents/HEAD/setup.py --------------------------------------------------------------------------------