From e2c918df914fa5abc9d5b4a8b196e717667d180e Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 18 Jul 2026 21:07:31 +0000 Subject: [PATCH] refactor: import config surface from autocti instead of autoconf Rewrite `from autoconf[.sub] import X` to `from autocti import X` across scripts, notebooks and markdown, so workspace code imports the config/serialization surface (conf, jax_wrapper, with_test_mode_segment, dictable/fitsable helpers, etc.) through the science library rather than depending on `autoconf` directly. The Colab bootstrap `from autoconf import setup_colab` is intentionally left on autoconf: it runs before the library is pip-installed on Colab. Notebooks were updated by the same deterministic line-level transform as the scripts (the catalogue files embed no import lines and are unaffected). Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_013ciVftxvYpefh59wSkR7jN --- scripts/dataset_1d/model_fit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dataset_1d/model_fit.py b/scripts/dataset_1d/model_fit.py index 1316174..97ca2f8 100644 --- a/scripts/dataset_1d/model_fit.py +++ b/scripts/dataset_1d/model_fit.py @@ -94,8 +94,8 @@ """ from pathlib import Path -from autoconf import conf -from autoconf.test_mode import with_test_mode_segment +from autocti import conf +from autocti import with_test_mode_segment database_file = "dataset_1d_integration.sqlite"