├── .gitignore ├── EthicsDash.png ├── Ethicsengine.jpg ├── LICENSE ├── README.md ├── api_schemas.py ├── config ├── __init__.py ├── config.py └── settings.json ├── dashboard ├── __init__.py ├── dashboard.tcss ├── dashboard_actions.py ├── dashboard_modals.py ├── dashboard_utils.py ├── interactive_dashboard.py ├── run_benchmarks.py ├── run_scenario_pipelines.py ├── task_queue_manager.py └── views │ ├── __init__.py │ ├── config_editor_view.py │ ├── data_mgmt_view.py │ ├── log_view.py │ ├── results_browser_view.py │ └── run_config_view.py ├── data ├── golden_patterns.json ├── scenarios.json ├── simple_bench_public.json └── species.json ├── ethicsengine.py ├── main_api.py ├── output_schema.json ├── reasoning_agent.py ├── requirements.txt ├── scenario_contribution_guide.md ├── todo.txt ├── upload_results.py └── validate_results.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /EthicsDash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/EthicsDash.png -------------------------------------------------------------------------------- /Ethicsengine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/Ethicsengine.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/README.md -------------------------------------------------------------------------------- /api_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/api_schemas.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/config/config.py -------------------------------------------------------------------------------- /config/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/config/settings.json -------------------------------------------------------------------------------- /dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashboard/dashboard.tcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/dashboard.tcss -------------------------------------------------------------------------------- /dashboard/dashboard_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/dashboard_actions.py -------------------------------------------------------------------------------- /dashboard/dashboard_modals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/dashboard_modals.py -------------------------------------------------------------------------------- /dashboard/dashboard_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/dashboard_utils.py -------------------------------------------------------------------------------- /dashboard/interactive_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/interactive_dashboard.py -------------------------------------------------------------------------------- /dashboard/run_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/run_benchmarks.py -------------------------------------------------------------------------------- /dashboard/run_scenario_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/run_scenario_pipelines.py -------------------------------------------------------------------------------- /dashboard/task_queue_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/task_queue_manager.py -------------------------------------------------------------------------------- /dashboard/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/views/__init__.py -------------------------------------------------------------------------------- /dashboard/views/config_editor_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/views/config_editor_view.py -------------------------------------------------------------------------------- /dashboard/views/data_mgmt_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/views/data_mgmt_view.py -------------------------------------------------------------------------------- /dashboard/views/log_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/views/log_view.py -------------------------------------------------------------------------------- /dashboard/views/results_browser_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/views/results_browser_view.py -------------------------------------------------------------------------------- /dashboard/views/run_config_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/dashboard/views/run_config_view.py -------------------------------------------------------------------------------- /data/golden_patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/data/golden_patterns.json -------------------------------------------------------------------------------- /data/scenarios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/data/scenarios.json -------------------------------------------------------------------------------- /data/simple_bench_public.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/data/simple_bench_public.json -------------------------------------------------------------------------------- /data/species.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/data/species.json -------------------------------------------------------------------------------- /ethicsengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/ethicsengine.py -------------------------------------------------------------------------------- /main_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/main_api.py -------------------------------------------------------------------------------- /output_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/output_schema.json -------------------------------------------------------------------------------- /reasoning_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/reasoning_agent.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/requirements.txt -------------------------------------------------------------------------------- /scenario_contribution_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/scenario_contribution_guide.md -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/todo.txt -------------------------------------------------------------------------------- /upload_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/upload_results.py -------------------------------------------------------------------------------- /validate_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emooreatx/EthicsEngine/HEAD/validate_results.py --------------------------------------------------------------------------------