Packaged Examples
This page is the rendered public catalog for examples shipped under
src/agilab/examples. Use it when you need the full list in one place. Use
Demos when you need a shorter route chooser.
The examples are split into executable app helpers, deterministic read-only previews, and notebook migration assets. The read-only previews intentionally avoid hidden services, private data, and long-lived workers.
Catalog
Example |
Route |
What it proves |
|---|---|---|
|
Executable app helper |
First proof for |
|
Executable app helper |
Smallest worker template and local execution smoke. |
|
Executable app helper |
Notebook-style forecast turned into a reproducible AGILAB app run. |
|
Executable app helper |
Deterministic mission-data decision run with richer artifacts. |
|
Executable app helper |
Classic ML proof with dataset generation, fitted pipeline, predictions, metrics, model artifact, and hash manifest. |
|
Notebook route |
Colab, Kaggle, and local agi-core notebooks for the smallest runtime surface. |
|
Notebook migration assets |
Packaged migration source material such as notebooks, analysis
artifacts, |
|
Read-only preview |
Notebook cells, artifact contracts, and Dask pipeline view before a real app conversion. |
|
Read-only preview |
Function, split rule, reducer, chunk partitions, and useful-worker capping when file count is lower than core count. |
|
Read-only preview |
Excel-shaped workbook output, Power Query-friendly CSVs, and evidence hashes. |
|
Read-only preview |
Local SQLite schema, parameterized read-only query, CSV output, and database evidence. |
|
Read-only preview |
Voila-shaped notebook dashboard proof with widget-to-args migration hints and app-view plan. |
|
Read-only preview |
Cross-project DAG compatibility route using explicit artifact handoff. |
|
Read-only preview |
Service lifecycle contract: start, status, health, and stop semantics without launching a persistent worker. |
|
Read-only preview |
Optional MLflow tracking around AGILAB execution evidence, not a parallel model registry. |
|
Read-only preview |
Controlled relay-failure scenario comparing fixed, replanned, search, and policy responses. |
|
Read-only preview |
Handoff from trained policy artifact to service contract, prediction sample, and health gate. |
|
Read-only preview |
PyO3/maturin native-worker skeleton for moving only a measured hot kernel to Rust while orchestration stays in Python. |
Execution Map
Use installed AGI_*.py helpers when you want to run a real built-in app from
~/log/execute/<app>/ after AGILAB has seeded the scripts. Use preview
scripts when you want deterministic evidence without starting services or
distributed workers.
python ~/log/execute/flight_telemetry/AGI_install_flight_telemetry.py
python ~/log/execute/flight_telemetry/AGI_run_flight_telemetry.py
Preview scripts are run from a source checkout through uv so dependencies
come from the checkout environment:
uv --preview-features extra-build-dependencies run python src/agilab/examples/parallel_stage/preview_parallel_stage.py --output /tmp/parallel_stage_preview.json
uv --preview-features extra-build-dependencies run python src/agilab/examples/sqlite_connector_proof/preview_sqlite_connector_proof.py --output-dir /tmp/agilab-sqlite-proof
uv --preview-features extra-build-dependencies run python src/agilab/examples/notebook_to_dask/preview_notebook_to_dask.py --output /tmp/notebook_to_dask_preview.json