Project Files Structure
This is the Agilab project files tree:
.
├── apps
│ ├── agent_app_template
│ │ ├── MANIFEST.in
│ │ ├── MANIFEST.in.in
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ └── src
│ │ ├── agent_app
│ │ │ ├── agent_app.py
│ │ │ └── __init__.py
│ │ ├── agent_app_worker
│ │ │ ├── agent_app_worker.py
│ │ │ ├── __init__.py
│ │ │ ├── post_install.py
│ │ │ └── pyproject.toml
│ │ ├── app_settings.toml
│ │ ├── args_ui_snippet.py
│ │ └── pre_prompt.json
│ ├── dag_app_template
│ │ ├── MANIFEST.in
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ └── src
│ │ ├── app_settings.toml
│ │ ├── args_ui_snippet.py
│ │ ├── dag_app
│ │ │ ├── dag_app.py
│ │ │ └── __init__.py
│ │ ├── dag_app_worker
│ │ │ ├── dag_app_worker.py
│ │ │ ├── __init__.py
│ │ │ ├── post_install.py
│ │ │ └── pyproject.toml
│ │ └── pre_prompt.json
│ ├── data_app_template
│ │ ├── MANIFEST.in
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ └── src
│ │ ├── app_settings.toml
│ │ ├── args_ui_snippet.py
│ │ ├── data_app
│ │ │ ├── data_app.py
│ │ │ └── __init__.py
│ │ ├── data_app_worker
│ │ │ ├── data_app_worker.py
│ │ │ ├── __init__.py
│ │ │ ├── post_install.py
│ │ │ └── pyproject.toml
│ │ └── pre_prompt.json
│ ├── flight-legacy-project
│ │ ├── pre_prompt.json
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ ├── scripts
│ │ │ └── post_install.py
│ │ ├── setup
│ │ ├── src
│ │ │ ├── app_settings.toml
│ │ │ ├── args_ui_snippet.py
│ │ │ ├── flight_legacy
│ │ │ │ ├── flight_legacy.py
│ │ │ │ └── __init__.py
│ │ │ ├── flight_legacy_worker
│ │ │ │ ├── flight_legacy_worker.py
│ │ │ │ └── __init__.py
│ │ │ ├── lab_steps.ipynb
│ │ │ ├── lab_steps.toml
│ │ │ └── pre_prompt.json
│ │ └── test
│ │ └── test_df.ipynb
│ ├── flight_project
│ │ ├── MANIFEST.in
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ ├── run_test.sh
│ │ ├── setup
│ │ ├── src
│ │ │ ├── agi_core
│ │ │ │ └── workers
│ │ │ ├── app_settings.toml
│ │ │ ├── args_ui_snippet.py
│ │ │ ├── flight
│ │ │ │ ├── flight.py
│ │ │ │ └── __init__.py
│ │ │ ├── flight_project.egg-info
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── not-zip-safe
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── requires.txt
│ │ │ │ ├── SOURCES.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── flight_worker
│ │ │ │ ├── dataset.7z
│ │ │ │ ├── flight_worker.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── post_install.py
│ │ │ │ └── pyproject.toml
│ │ │ ├── lab_steps.ipynb
│ │ │ ├── lab_steps.toml
│ │ │ └── pre_prompt.json
│ │ ├── test
│ │ │ ├── __init__.py
│ │ │ ├── test_df.ipynb
│ │ │ ├── test_flight_manager.py
│ │ │ ├── test_flight.py
│ │ │ └── test_flight_worker.py
│ │ └── uv.lock
│ ├── flight_sim_project
│ │ ├── distribution_tree.json
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ ├── setup
│ │ ├── src
│ │ │ ├── agi_core
│ │ │ │ └── workers
│ │ │ ├── app_settings.toml
│ │ │ ├── args_ui_snippet.py
│ │ │ ├── flight_sim
│ │ │ │ ├── flight_sim.py
│ │ │ │ └── __init__.py
│ │ │ ├── flight_sim_worker
│ │ │ │ ├── dataset.7z
│ │ │ │ ├── flight_sim_worker.py
│ │ │ │ ├── flight_sim_worker.pyx
│ │ │ │ ├── __init__.py
│ │ │ │ ├── post_install.py
│ │ │ │ └── pyproject.toml
│ │ │ ├── main.py
│ │ │ ├── pre_prompt.json
│ │ │ └── pyproject.toml
│ │ └── test
│ │ ├── __init__.py
│ │ ├── test_df.ipynb
│ │ ├── test_flight_sim_manager.py
│ │ ├── test_flight_sim.py
│ │ └── test_flight_sim_worker.py
│ ├── install.ps1
│ ├── install.py
│ ├── install.sh
│ ├── my_code_project
│ │ ├── install.py
│ │ ├── MANIFEST.in
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ ├── setup
│ │ ├── src
│ │ │ ├── agi_core
│ │ │ │ └── workers
│ │ │ ├── app_settings.toml
│ │ │ ├── args_ui_snippet.py
│ │ │ ├── my_code
│ │ │ │ ├── __init__.py
│ │ │ │ └── my_code.py
│ │ │ ├── my_code_project.egg-info
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── not-zip-safe
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── requires.txt
│ │ │ │ ├── SOURCES.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── my_code_worker
│ │ │ │ ├── __init__.py
│ │ │ │ ├── my_code_worker.py
│ │ │ │ └── pyproject.toml
│ │ │ └── pre_prompt.json
│ │ ├── test
│ │ │ ├── __init__.py
│ │ │ ├── test_my_code_manager.py
│ │ │ └── test_my_code_worker.py
│ │ └── uv.lock
│ ├── pcm-predictor-project
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ ├── scripts
│ │ │ ├── post_install.py
│ │ │ └── unzip_data.py
│ │ ├── setup
│ │ └── src
│ │ ├── app_settings.toml
│ │ ├── args_ui_snippet.py
│ │ ├── pcm_predictor
│ │ │ ├── __init__.py
│ │ │ └── pcm_predictor.py
│ │ └── pcm_predictor_worker
│ │ ├── __init__.py
│ │ └── pcm_predictor_worker.py
│ ├── README.md
│ └── satcom-sim-project
│ ├── data.7z
│ ├── pyproject.toml
│ ├── README.md
│ ├── scripts
│ │ ├── post_install.py
│ │ └── unzip_data.py
│ ├── setup
│ └── src
│ ├── app_settings.toml
│ ├── args_ui_snippet.py
│ ├── satcom_sim
│ │ ├── __init__.py
│ │ └── satcom_sim.py
│ └── satcom_sim_worker
│ ├── __init__.py
│ └── satcom_sim_worker.py
├── fwk
│ ├── core
│ │ ├── LICENSE
│ │ ├── MANIFEST.in
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ ├── SECURITY.md
│ │ ├── setup
│ │ ├── src
│ │ │ ├── agi_core
│ │ │ │ ├── __init__.py
│ │ │ │ ├── managers
│ │ │ │ └── workers
│ │ │ ├── agi_core.egg-info
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── requires.txt
│ │ │ │ ├── SOURCES.txt
│ │ │ │ └── top_level.txt
│ │ │ └── __init__.py
│ │ ├── test
│ │ │ ├── __init__.py
│ │ │ ├── test_agi_manager.py
│ │ │ ├── test_agi_runner.py
│ │ │ ├── test_agi_worker.py
│ │ │ ├── test_dag_worker.py
│ │ │ └── test_data_worker.py
│ │ └── uv.lock
│ ├── coverage.xml
│ ├── env
│ │ ├── LICENSE
│ │ ├── MANIFEST.in
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ ├── SECURITY.md
│ │ ├── setup
│ │ ├── src
│ │ │ ├── agi_env
│ │ │ │ ├── agi_env.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── resources
│ │ │ ├── agi_env.egg-info
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── requires.txt
│ │ │ │ ├── SOURCES.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── __init__.py
│ │ │ ├── main.py
│ │ │ └── pyproject.toml
│ │ ├── test
│ │ │ ├── clean_csv.py
│ │ │ ├── __init__.py
│ │ │ └── test_agi_env.py
│ │ └── uv.lock
│ ├── gen-app-script.py
│ ├── gui
│ │ ├── LICENSE
│ │ ├── MANIFEST.in
│ │ ├── pyproject.toml
│ │ ├── README.md
│ │ ├── src
│ │ │ └── agi_gui
│ │ │ ├── agi_copilot.py
│ │ │ ├── AGILAB.py
│ │ │ ├── __init__.py
│ │ │ ├── lab_run.py
│ │ │ ├── pagelib.py
│ │ │ ├── pages
│ │ │ ├── resources
│ │ │ └── steps.toml
│ │ ├── test
│ │ │ ├── __init__.py
│ │ │ └── test-streamlit.sh
│ │ └── uv.lock
│ ├── install.ps1
│ ├── install.sh
│ └── run-all-test.py
├── pycharm
│ ├── gen-app-script.py
│ ├── _template_app_egg.xml
│ ├── _template_app_lib.xml
│ ├── _template_app_postinstall.xml
│ ├── _template_app_run.xml
│ └── _template_app_test.xml
└── views
├── autoencoder-latentspace
│ ├── __init__.py
│ └── src
│ ├── autoencoder_latentspace
│ │ ├── autoencoder_latentspace.py
│ │ └── __init__.py
│ └── __init__.py
├── barycentric-graph
│ ├── __init__.py
│ └── src
│ ├── barycentric_graph
│ │ ├── barycentric_graph.py
│ │ └── __init__.py
│ └── __init__.py
├── maps
│ └── src
│ └── maps
│ ├── __init__.py
│ └── maps.py
├── maps-3d
│ └── src
│ └── maps_3d
│ ├── __init__.py
│ └── maps_3d.py
├── maps-network-graph
│ └── src
│ └── maps_network_graph
│ ├── __init__.py
│ └── maps_network_graph.py
├── pyproject.toml
└── README.md
90 directories, 233 files