gitextract_ps7v2nt2/ ├── .claude/ │ └── commands/ │ └── release.md ├── .cursorignore ├── .gitignore ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CLAUDE.md ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── README_AIBI.md ├── SECURITY.md ├── ai_release/ │ ├── __init__.py │ ├── bundle.py │ ├── compute.py │ ├── inspect_jobs.py │ ├── jobs.py │ ├── run_remote.py │ ├── run_state.py │ └── runs/ │ └── .gitignore ├── build-and-distribute.sh ├── build.sh ├── dbdemos/ │ ├── __init__.py │ ├── conf.py │ ├── dbdemos.py │ ├── exceptions/ │ │ ├── __init__.py │ │ └── dbdemos_exception.py │ ├── installer.py │ ├── installer_dashboard.py │ ├── installer_genie.py │ ├── installer_report.py │ ├── installer_repos.py │ ├── installer_workflows.py │ ├── job_bundler.py │ ├── notebook_parser.py │ ├── packager.py │ ├── resources/ │ │ ├── default_cluster_config-AWS.json │ │ ├── default_cluster_config-AZURE.json │ │ ├── default_cluster_config-GCP.json │ │ ├── default_cluster_config.json │ │ ├── default_cluster_job_config.json │ │ └── default_test_job_conf.json │ ├── sql_query.py │ ├── template/ │ │ ├── LICENSE.html │ │ ├── NOTICE.html │ │ ├── README.html │ │ ├── code_viewer.html │ │ └── index.html │ └── tracker.py ├── docs/ │ ├── CNAME │ └── index.html ├── main.py ├── requirements.in ├── requirements.txt ├── setup.py ├── test/ │ ├── __init__.py │ ├── test2.html │ ├── test_installer.py │ ├── test_installer_genie.py │ ├── test_job_bundler.py │ ├── test_list_demos.html │ ├── test_list_demos2.html │ └── test_notebook_parser.py ├── test_demo.py └── test_list_html.html