.envrc
.gitignore
.pypirc
LICENSE
Makefile
README.md
flake.lock
flake.nix
pyproject.toml
uv.lock
.devcontainer/devcontainer.json
.github/dependabot.yml
.github/workflows/qa.yml
.github/workflows/release.yml
docs/getting-started.md
docs/index.md
docs/laco-vs-hydra-zen.md
docs/migration-0.x-to-1.0.md
docs/tutorials.md
docs/api/cli.md
docs/api/compat.md
docs/api/index.md
docs/api/instantiate.md
docs/api/io.md
docs/api/language.md
docs/concepts/app-loop.md
docs/concepts/config-as-python.md
docs/concepts/index.md
docs/concepts/interpolation.md
docs/concepts/lazy-construction.md
docs/concepts/lie-typing.md
docs/concepts/tracing.md
docs/concepts/typed-groups.md
docs/examples/building-blocks.md
docs/examples/foundations.md
docs/examples/index.md
docs/examples/pipelines.md
docs/examples/typed-variants.md
docs/how-to/custom-resolvers.md
docs/how-to/index.md
docs/how-to/laco-app.md
docs/how-to/lint-and-strict.md
docs/how-to/migrate-from-argparse.md
docs/how-to/override-configs.md
docs/how-to/reproduce-experiment.md
docs/how-to/safe-loading.md
notebooks/tutorials/00_why_laco.ipynb
notebooks/tutorials/01_first_steps.ipynb
notebooks/tutorials/02_lazy_call_and_partial.ipynb
notebooks/tutorials/03_hyperparameters_and_interpolation.ipynb
notebooks/tutorials/04_loading_saving_cli.ipynb
notebooks/tutorials/05_nested_configs_and_containers.ipynb
notebooks/tutorials/06_typed_groups_and_schemas.ipynb
notebooks/tutorials/07_pipeline_configs.ipynb
notebooks/tutorials/08_tasks_and_app_loop.ipynb
notebooks/tutorials/09_tracing.ipynb
notebooks/tutorials/10_production_patterns.ipynb
packages/laco-dvc/README.md
packages/laco-dvc/pyproject.toml
packages/laco-dvc/docs/index.md
packages/laco-dvc/sources/laco/integrations/dvc/__init__.py
packages/laco-dvc/sources/laco/integrations/dvc/_core.py
packages/laco-dvc/tests/__init__.py
packages/laco-dvc/tests/test_laco_dvc.py
packages/laco-lightning/README.md
packages/laco-lightning/pyproject.toml
packages/laco-lightning/docs/index.md
packages/laco-lightning/sources/laco/integrations/lightning/__init__.py
packages/laco-lightning/sources/laco/integrations/lightning/_core.py
packages/laco-lightning/tests/__init__.py
packages/laco-lightning/tests/test_laco_lightning.py
packages/laco-logging/README.md
packages/laco-logging/pyproject.toml
packages/laco-logging/docs/index.md
packages/laco-logging/sources/laco/integrations/logging/__init__.py
packages/laco-logging/sources/laco/integrations/logging/_core.py
packages/laco-logging/sources/laco/integrations/logging/mlflow.py
packages/laco-logging/sources/laco/integrations/logging/tensorboard.py
packages/laco-logging/sources/laco/integrations/logging/wandb.py
packages/laco-logging/sources/laco/integrations/logging/_backends/__init__.py
packages/laco-logging/sources/laco/integrations/logging/_backends/mlflow.py
packages/laco-logging/sources/laco/integrations/logging/_backends/tensorboard.py
packages/laco-logging/sources/laco/integrations/logging/_backends/wandb.py
packages/laco-logging/tests/__init__.py
packages/laco-logging/tests/test_laco_logging.py
packages/laco-pydantic/README.md
packages/laco-pydantic/pyproject.toml
packages/laco-pydantic/docs/index.md
packages/laco-pydantic/sources/laco/integrations/pydantic/__init__.py
packages/laco-pydantic/sources/laco/integrations/pydantic/_core.py
packages/laco-pydantic/tests/__init__.py
packages/laco-pydantic/tests/test_laco_pydantic.py
packages/laco-pytest/README.md
packages/laco-pytest/pyproject.toml
packages/laco-pytest/docs/index.md
packages/laco-pytest/sources/laco/integrations/pytest/__init__.py
packages/laco-pytest/sources/laco/integrations/pytest/plugin.py
packages/laco-pytest/tests/__init__.py
packages/laco-pytest/tests/test_laco_pytest.py
packages/laco-submitit/README.md
packages/laco-submitit/pyproject.toml
packages/laco-submitit/docs/index.md
packages/laco-submitit/sources/laco/integrations/submitit/__init__.py
packages/laco-submitit/sources/laco/integrations/submitit/_core.py
packages/laco-submitit/tests/__init__.py
packages/laco-submitit/tests/test_laco_submitit.py
packages/laco-torch/README.md
packages/laco-torch/pyproject.toml
packages/laco-torch/docs/index.md
packages/laco-torch/sources/laco/integrations/torch/__init__.py
packages/laco-torch/sources/laco/integrations/torch/_core.py
packages/laco-torch/tests/__init__.py
packages/laco-torch/tests/test_laco_torch.py
packages/laco-typer/README.md
packages/laco-typer/pyproject.toml
packages/laco-typer/docs/index.md
packages/laco-typer/sources/laco/integrations/typer/__init__.py
packages/laco-typer/sources/laco/integrations/typer/_core.py
packages/laco-typer/tests/__init__.py
packages/laco-typer/tests/test_laco_typer.py
sources/hydra_plugins/laco_resolvers/__init__.py
sources/laco/__init__.py
sources/laco/_app.py
sources/laco/_env.py
sources/laco/_groups.py
sources/laco/_io.py
sources/laco/_lazy.py
sources/laco/_overrides.py
sources/laco/_plugins.py
sources/laco/_resolvers.py
sources/laco/_strict.py
sources/laco/cli.py
sources/laco/compat.py
sources/laco/handler.py
sources/laco/keys.py
sources/laco/language.py
sources/laco/ops.py
sources/laco/py.typed
sources/laco/utils.py
sources/laco.egg-info/PKG-INFO
sources/laco.egg-info/SOURCES.txt
sources/laco.egg-info/dependency_links.txt
sources/laco.egg-info/entry_points.txt
sources/laco.egg-info/requires.txt
sources/laco.egg-info/top_level.txt
sources/laco/_lint/__init__.py
sources/laco/_lint/lie_typing.py
sources/laco/examples/cnn_classifier.py
sources/laco/examples/linear_regression.py
sources/laco/examples/mlp.py
sources/laco/examples/text_classifier.py
sources/laco/examples/blocks/decoder.py
sources/laco/examples/blocks/residual.py
sources/laco/examples/blocks/transformer.py
sources/laco/examples/integrations/_lit_classifier.py
sources/laco/examples/integrations/lightning_module.py
sources/laco/examples/integrations/tensordict_module.py
sources/laco/examples/integrations/transformers_qa.py
sources/laco/examples/layers/fpn.py
sources/laco/examples/layers/gqa_attention.py
sources/laco/examples/layers/mean_pool.py
sources/laco/examples/layers/panoptic_heads.py
sources/laco/examples/layers/patch_embed.py
sources/laco/examples/layers/register_tokens.py
sources/laco/examples/layers/rms_norm.py
sources/laco/examples/layers/rope.py
sources/laco/examples/layers/swiglu.py
sources/laco/examples/models/_dinov3.py
sources/laco/examples/models/_lm.py
sources/laco/examples/models/_panoptic_fcn.py
sources/laco/examples/models/_resnet.py
sources/laco/examples/models/_vit.py
sources/laco/examples/models/dinov3.py
sources/laco/examples/models/gemma3.py
sources/laco/examples/models/panoptic_fcn.py
sources/laco/examples/models/qwen3.py
sources/laco/examples/models/resnet.py
sources/laco/examples/models/vit.py
sources/laco/examples/pipelines/clm_finetune.py
sources/laco/examples/pipelines/mnist_train.py
sources/laco/examples/typed/__init__.py
sources/laco/examples/typed/linear_regression.py
sources/laco/examples/typed/mlp.py
sources/laco/examples/typed/text_classifier.py
tests/test_cli_app.py
tests/test_cli_diff.py
tests/test_cli_run.py
tests/test_env.py
tests/test_examples.py
tests/test_groups.py
tests/test_groups_dsl.py
tests/test_handler.py
tests/test_instantiate_bench.py
tests/test_io.py
tests/test_language.py
tests/test_language_defaults.py
tests/test_language_params.py
tests/test_language_typing.py
tests/test_lazy_cycle.py
tests/test_lint_lie_typing.py
tests/test_overrides.py
tests/test_property.py
tests/test_strict.py
tests/test_task.py
tests/test_trace.py
tests/test_utils.py
tests/test_version.py
tests/test_wire_format.py