hypernix 0.72.5.dev1__tar.gz → 0.72.5.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/PKG-INFO +213 -23
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/README.md +209 -19
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/pyproject.toml +12 -4
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/setup.cfg +3 -3
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/__init__.py +1 -1
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyped_pro.js +139 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/cli.py +103 -3
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/hyped_pro_bridge.py +73 -2
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/hyped_pro_gui.py +158 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/noodle/__init__.py +12 -0
- hypernix-0.72.5.dev2/src/hypernix/interfaces/noodle/hyped.py +521 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/noodle/tools.py +9 -0
- hypernix-0.72.5.dev2/src/hypernix/monitoring/cctvtop.py +263 -0
- hypernix-0.72.5.dev2/src/hypernix/monitoring/remote_desktop.py +647 -0
- hypernix-0.72.5.dev2/src/hypernix/monitoring/stale_log.py +596 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/tvtoppro.py +374 -3
- hypernix-0.72.5.dev2/src/hypernix/monitoring/tvtoppro_modules.py +724 -0
- hypernix-0.72.5.dev2/src/hypernix/quant/dflash1.py +400 -0
- hypernix-0.72.5.dev2/src/hypernix/quant/dflash1_cli.py +140 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/dflash2.py +49 -39
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/gguf.py +6 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/ggufcheck.py +12 -11
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/hyprslug.py +490 -112
- hypernix-0.72.5.dev2/src/hypernix/quant/hyprslug_cli.py +615 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/lowbit.py +55 -1
- hypernix-0.72.5.dev2/src/hypernix/quant/multiquant.py +684 -0
- hypernix-0.72.5.dev2/src/hypernix/quant/multiquant_cli.py +173 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/steamroller.py +17 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/security/keymaster.py +89 -4
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/config.py +79 -3
- hypernix-0.72.5.dev2/src/hypernix/t1api/accounts.py +803 -0
- hypernix-0.72.5.dev2/src/hypernix/t1api/accounts_cli.py +313 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/app.py +46 -1
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/__init__.py +10 -0
- hypernix-0.72.5.dev2/src/hypernix/t1api/routers/accounts.py +705 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/version.py +3 -3
- hypernix-0.72.5.dev2/src/hypernix/t1api/webauth.py +357 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/timing/spinner.py +69 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix.egg-info/SOURCES.txt +22 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_cli_json_output.py +13 -6
- hypernix-0.72.5.dev2/tests/test_cli_unknown_command.py +164 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ggufcheck.py +9 -3
- hypernix-0.72.5.dev2/tests/test_hyperlink_ios_wiring.py +683 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyprslug_row_blocks.py +39 -8
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_lint_regressions.py +4 -1
- hypernix-0.72.5.dev2/tests/test_multiquant.py +551 -0
- hypernix-0.72.5.dev2/tests/test_noodle_hyped.py +560 -0
- hypernix-0.72.5.dev2/tests/test_remote_desktop.py +428 -0
- hypernix-0.72.5.dev2/tests/test_security_fixes.py +364 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_subbit_quantization.py +26 -3
- hypernix-0.72.5.dev2/tests/test_t1_accounts.py +747 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1_v1_0_26_core.py +3 -3
- hypernix-0.72.5.dev2/tests/test_tvtoppro_features.py +488 -0
- hypernix-0.72.5.dev2/wiki/Changelog-guide.md +667 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Changelog.md +139 -1
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Home.md +1 -1
- hypernix-0.72.5.dev2/wiki/Model-Training-Guide.md +391 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Release-Timeline.md +16 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Roadmap.md +48 -19
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Training.md +4 -0
- hypernix-0.72.5.dev1/src/hypernix/monitoring/cctvtop.py +0 -162
- hypernix-0.72.5.dev1/src/hypernix/quant/hyprslug_cli.py +0 -302
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/build.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/ci.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/codacy.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/codeql.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/deploy-docs.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/ios.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/public-release.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/release.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/update-json-stats.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/.github/workflows/update-readme.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/LICENSE +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/MANIFEST.in +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/banner-hero.svg +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo/Gemini_Generated_Image_nxfdm1nxfdm1nxfd-removebg-preview.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo/Gemini_Generated_Image_nxfdm1nxfdm1nxfd.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/apple-touch-icon.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/favicon-16.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/favicon-32.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/favicon-48.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/hypernix-favicon.svg +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/hypernix-icon-dark.svg +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/hypernix-icon-mono.svg +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/hypernix-icon-ondark.svg +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/hypernix-icon-white.svg +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/hypernix-icon.svg +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/hypernix-lockup-dark.svg +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/hypernix-lockup-light.svg +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/icon-192.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo-new/icon-512.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/assets/logo1.png +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/bin/_hypernix_python.sh +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/bin/hyped+ +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/bin/hyped-pro +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/bin/hyped-pro-gui +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/bin/hypernix-t1 +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/curriculum_eval_v0_70_4.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/custom_arch.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/hypernix_run.json +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/hyprslug-headers/README.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/hyprslug-headers/serve.sh +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/hyprslug-headers/wrap-for-lmstudio.sh +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/quickstart.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/resilient_finetune_v0_70_4.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/run_hypernix.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/.env.example +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/API-EXAMPLES.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/Dockerfile +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/README.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/config/.gitkeep +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/docker-compose.yml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/hypernix-t1api.service +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/nginx.conf +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/openapi.json +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/run_local.sh +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/t1api/run_tailscale.sh +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/train hypernix 1 5 gtx1080.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/train_hypernix_0_1_5_evaluator.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/train_hypernix_1_5_gtx1080.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/tvtoppro/README.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/tvtoppro/dracula.theme +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/tvtoppro/gruvbox-dark.theme +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/tvtoppro/hypernix.theme +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/tvtoppro/mono.theme +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/tvtoppro/monokai.theme +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/tvtoppro/nord.theme +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/tvtoppro/tokyo-night.theme +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/examples/upload_to_hub.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/install-t1.sh +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/pytest.ini +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/ruff.toml +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/README.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/apply_hypernix_fixes.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/autofix +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/autofix-B +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/autofix-E +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/autofix-F +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/autofix_scope.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/benchmark_v5.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/benchmark_v5s.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/benchmark_v6.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/ci/fake_model_server.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/ci/integration_probe.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/ci/wait_for_http.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/install_deps.sh +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/install_macos_legacy.sh +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/measure_optimizer_memory.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/quantize_i7_7660u.sh +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/t1api_examples.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/scripts/update_json_stats.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/setup.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/__main__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/audio/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/audio/audiofile.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/audio/features.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/audio/wakeup.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/audio/wakeup_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/bridge/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/bridge/lmstudio.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/chat/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/chat/cookbook.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/chat/countertop.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/chat/flour.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/chat/injection.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/chat/menu.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/blender.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/cardboard_box.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/cutting_board.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/food_processor.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/gather.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/gather_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/lunchbox.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/mediocre_fridge.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/pans.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/pepper_shaker.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/qa.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/salt_shaker.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/scavenger.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/sink.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/strainer.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/toaster.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/data/tupperware.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/evaluation/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/evaluation/espresso_maker.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/evaluation/industrial_range.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/evaluation/new_fridge.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/evaluation/new_range.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/evaluation/old_range.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/evaluation/vera.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/discovery.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/files.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/hfdownload.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/hfmerge.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/identity.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/notify.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/ondevice.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/pairing.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/peers.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/search.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/sessions.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/hyperlink/sync.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/assistant.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/hyped.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/hyped_pro.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/hyped_pro_core.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/hyped_pro_tools.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/noodle/agent.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/noodle/cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/noodle/hpo.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/noodle/providers.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/noodle/swarm.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/noodle/validate.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/version_launcher.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/websearch.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/interfaces/wiki_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/arch.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/brewer_adapter.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/download.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/generate.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/ggufrun.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/hnxdevice.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/hnxrun.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/hnxtokenizer.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/hnxtorch.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/microwave.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/multilama.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/nano_nano.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/neo_oven.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/old_oven.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/stml.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/whisk.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/models/workshop.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/hyper_log.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/livestream.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/map.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/plasma.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/table.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/thermometer.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/tv.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/tvtop.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/monitoring/tvtop_plus_plus.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/optimizer_framework.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/pressure_cooker.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/pressure_cooker_v3.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/pressure_cooker_v4.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/pressure_cooker_v5.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/pressure_cooker_v5s.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/pressure_cooker_v6.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/pressure_cooker_v6v.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/optimizers/sixbit.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/package-lock.json +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/package.json +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/py.typed +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/convert.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/dflash2_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/fetcher.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/formats.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/hyprslug_headers.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/hyprslug_headers_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/hyprslug_server.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/imatrix.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/imatrix_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/llamaquants.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/qat.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/quantize.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/runtime_bridge.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/runtime_bridge_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/steamroller_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/subbit.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/quant/upload.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/scriptgen/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/scriptgen/app.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/scriptgen/cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/scriptgen/params.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/scriptgen/templates.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/scriptgen/theme.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/scriptgen/widgets.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/security/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/security/gatekeeper.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/security/gkey_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/security/keyconfig.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/security/keyversions.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/security/t2keys.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/compactor.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/deprecation.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/deps.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/dishwasher.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/doctor.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/ethanol.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/freezer.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/fusebox.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/fusebox_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/gpus.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/launcher.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/net.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/nettrust.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/old_fridge.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/outage.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/pascal.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/pathfix.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/protect.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/release.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/torch_compat.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/ups.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/utils.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/system/vram.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/audit.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/auth.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/authhistory.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/backup.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/billing.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/billingkeys.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/bootstrap.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/config.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/cost.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/data/model_registry.example.json +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/data/routing_policies.example.json +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/db.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/deploy.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/deps.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/errors.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/events.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/jobs.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/keys.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/launchscript_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/modelindex.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/modelindex_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/modules.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/mtls.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/netpolicy.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/ratelimit.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/registry.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/audit.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/auth.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/authundo.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/backup.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/billing.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/bridge.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/config.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/events.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/health.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/hyperlink.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/inference.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/jobs.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/keys.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/models.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/modules.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/security.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/servers.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/training.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routers/usage.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/routing.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/schemas.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/security.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/servers.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/storage.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/training_cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/transport.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1api/usage.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1sdk/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1sdk/client.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1sdk/errors.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1sdk/models.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/t1sdk/transport.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/timing/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/timing/bell.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/timing/coffee_maker.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/timing/smoke_alarm.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/timing/timer.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/abbicus.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/apron.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/brewer.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/cake_pan.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/camouflage.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/compute_framework.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/deep_fryer.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/fizzle.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/instant_pot.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/lazy_suzan.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/monitor.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/mtp.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/recipe_book.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/smoker.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/training/train.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/tsconfig.json +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/waiter/__init__.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/waiter/cli.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/waiter/client.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/waiter/diagnose.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/waiter/discovery.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/waiter/local_config.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/waiter/smoke.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/src/hypernix/waiter/tui.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/shell_support.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_alarms_and_presets.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_arch_mapping.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_assistant.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_autofix_scripts.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_billing_keys.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_bootstrap_key.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_brewer_adapter.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_brewer_causality.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ci_integration_jobs.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_cli_integration.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_coverage_beef.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_decoder_agreement.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_deprecation.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_deps_and_windows.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_dflash2.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_effective_bitrate.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ethanol.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_fetcher.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_freezer.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_fridges.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_fusebox.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_gather.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ggml_hnx.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_gguf_inference.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_gkey_key_versions.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_gpu_migration.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_gpus.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hnx_device_placement.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hnx_devices.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hnxrun.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyped_pro_bridge_cancel.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyped_pro_t1api.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyperlink_api_post9.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyperlink_discovery.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyperlink_notify.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyperlink_ondevice.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyperlink_ondevice_mirror.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyperlink_reachability.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyperlink_search.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyperlink_sync.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hypernix_t1_service.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyprslug_field_reports.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyprslug_headers.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_hyprslug_recipes.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_imatrix.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_inference_endpoints.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_install_pin.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_install_script.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ios_appicon.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ios_concurrency.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ios_llama_link.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ios_version_wiring.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_kitchen_v044.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_kitchen_v045.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_launch_script.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_lazy_suzan.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_llama_quants.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_low_bit_types.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_lunchbox.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_map.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_model_registry_discovery.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_module_layout.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_neo_oven.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_neo_oven_generation.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_nettrust.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_new_archs_v035.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_nix_fallback.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_old_oven.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_pathfix.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_pressure_cooker_v048.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_pressure_cooker_v3.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_pressure_cooker_v6.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_qat.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_quantize_v0703.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ranges.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_runtime_bridge.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_shakers_and_torchcompat.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_snapshot_roundtrip.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_sspkid_and_key_config.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_studio_core.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_studio_local.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_subsystem_map.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1_model_index.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1_v1_0_26_8_1_1.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1_v1_0_26_http.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_auth.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_beta3_core.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_beta3_http.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_beta3_security.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_beta4_usage_report.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_billing.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_core.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_events.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_example_scripts.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_http.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_http_beta2.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_jobs.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_modules.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_routing.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_security.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t1api_servers.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_t2s_errors.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_tool_consent_gate.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_training_admin.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_trusted_network.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_tupperware.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_tvtop_plus_plus_comprehensive.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_tvtoppro.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_ups.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v031_chat_and_archs.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v047_deep_fryer_cake_pan_presets.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v050.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v051.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v051_1.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v051_3.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v051_4.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v052_5.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v052_6.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v060.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v061_1.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v061_2.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v061_b1.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0703_additional.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0704_features.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0704_tvtop_plus_plus.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0704b11_features.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0704b12_cctvtop.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0705_all.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0710_gatekeeper_keymaster.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0711_border_fix.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0712_hyped_countertop.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0714_config_provider_keys.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0714_cpu_presets.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0714_hyped_pro_bridge.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0714_hyped_pro_core.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0714_hyped_pro_launcher.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0714_hyped_pro_tools.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0714_multilama.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0721_api_waiter.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0721_modules.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_v0721_t2_keys.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_vera.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_version_guard.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_version_launcher.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_vram_optimizations.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_waiter.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_waiter_diagnose.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_wakeup.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/tests/test_website_mobile.py +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Abbicus.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Alarms.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Apron.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Architectures.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Bell.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Blender.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/CLI.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/CakePan.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Camouflage.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/CoffeeMaker.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Convert.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Cookbook.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Countertop.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/CuttingBoard.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Dashboards.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/DeepFryer.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Devices.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Dflash2.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Download.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/EspressoMaker.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Flour.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/FoodProcessor.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Frameworks.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Freezer.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Fridges.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/FuseBox.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Gather.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/HnxRun.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/HuggingFace-Models.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/HyperLink-OnDevice.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/HyperLink-Sync.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/HyperLog.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/HyprSlug-Headers.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/HyprSlug.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Imatrix.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Kitchen.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/LowBit.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Lunchbox.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/MTP.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Menu.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Microwave.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/ModelIndex.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Optimizers.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Ovens.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Pans.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Pascal.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/PipelineMechanics.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Pressure-Cooker-V3.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Pressure-Cooker-V4.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Pressure-Cooker-V5.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Pressure-Cooker-V6.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Quantization.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Ranges.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/RecipeBook.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Runtime.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/STML.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Scavenger.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Shakers.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Smoker.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/T1-API-Security-Checklist.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/T1-API.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Toaster.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Tupperware.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/TvTopPro.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/VRAM.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Vera.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Waiter-TUI.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/WakeUp.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Whisk.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/Workshop.md +0 -0
- {hypernix-0.72.5.dev1 → hypernix-0.72.5.dev2}/wiki/macOS-legacy.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hypernix
|
|
3
|
-
Version: 0.72.5.
|
|
3
|
+
Version: 0.72.5.dev2
|
|
4
4
|
Summary: Download and quantize the HyperNix PyTorch model to GGUF (fp32/fp16/Q8_0/Q6_K/Q4_K_M). and train models with a massive ai toolkit
|
|
5
5
|
Home-page: https://github.com/trail-b1az3r/hypernix-pip
|
|
6
6
|
Author: HyperNix contributors
|
|
@@ -10,7 +10,7 @@ Project-URL: Source, https://github.com/trail-b1az3r/hypernix-pip
|
|
|
10
10
|
Project-URL: Issues, https://github.com/trail-b1az3r/hypernix-pip/issues
|
|
11
11
|
Project-URL: Logo, https://raw.githubusercontent.com/trail-b1az3r/hypernix-pip/main/assets/logo.png
|
|
12
12
|
Keywords: hypernix,gguf,quantization,llama.cpp,pytorch,Ai,llm
|
|
13
|
-
Classifier: Development Status ::
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
14
|
Classifier: Environment :: Console
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
@@ -33,7 +33,7 @@ Requires-Dist: safetensors>=0.4.3
|
|
|
33
33
|
Requires-Dist: huggingface-hub>=0.24
|
|
34
34
|
Requires-Dist: gguf>=0.10.0
|
|
35
35
|
Requires-Dist: tqdm>=4.66
|
|
36
|
-
Requires-Dist: rich<=
|
|
36
|
+
Requires-Dist: rich<=15.0.0,>14
|
|
37
37
|
Requires-Dist: sentencepiece>=0.2.1
|
|
38
38
|
Provides-Extra: llama-cpp
|
|
39
39
|
Requires-Dist: llama-cpp-python>=0.2.90; extra == "llama-cpp"
|
|
@@ -59,7 +59,7 @@ Provides-Extra: t1api-test
|
|
|
59
59
|
Requires-Dist: hypernix[dev,t1api]; extra == "t1api-test"
|
|
60
60
|
Requires-Dist: httpx<1,>=0.27; extra == "t1api-test"
|
|
61
61
|
Provides-Extra: legacy-torch
|
|
62
|
-
Requires-Dist: numpy<
|
|
62
|
+
Requires-Dist: numpy<3,>=1.21; extra == "legacy-torch"
|
|
63
63
|
Requires-Dist: safetensors>=0.3.1; extra == "legacy-torch"
|
|
64
64
|
Requires-Dist: huggingface-hub>=0.16; extra == "legacy-torch"
|
|
65
65
|
Requires-Dist: tqdm>=4.64; extra == "legacy-torch"
|
|
@@ -87,12 +87,15 @@ Dynamic: license-file
|
|
|
87
87
|
**End-to-end toolkit for training ai models on modern or old devices, originaly for converting hypernix.1 into gguf, now for all around training**
|
|
88
88
|
|
|
89
89
|
## What's fixed in this update
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
|
|
91
|
+
The section below covers what 0.72.5 adds.
|
|
92
|
+
[`wiki/Changelog.md`](wiki/Changelog.md) is the canonical per-release
|
|
93
|
+
history, and [`wiki/Roadmap.md`](wiki/Roadmap.md) says what is next.
|
|
92
94
|
|
|
93
95
|
## Table of contents
|
|
94
96
|
|
|
95
97
|
- [What's fixed in this update](#whats-fixed-in-this-update)
|
|
98
|
+
- [What's new: 0.72.5 — drafts, bundles, accounts, and a car](#whats-new-0725--drafts-bundles-accounts-and-a-car)
|
|
96
99
|
- [What's new: 0.72.3.post2 — sub-bit models you can actually run](#whats-new-0723post2--sub-bit-models-you-can-actually-run)
|
|
97
100
|
- [What's new: 0.72.3 — T1 v1.0.2026.8.1.1](#whats-new-0723--t1-v102026811)
|
|
98
101
|
- [Package layout](#package-layout)
|
|
@@ -116,6 +119,150 @@ for most updates
|
|
|
116
119
|
|
|
117
120
|
Cross-platform: Linux, macOS, Windows. Python 3.10 - 3.14.
|
|
118
121
|
|
|
122
|
+
## What's new: 0.72.5 — drafts, bundles, accounts, and a car
|
|
123
|
+
|
|
124
|
+
**Speculative decoding, in both shapes.** `hyprslug` produced a
|
|
125
|
+
quantised model and `dflash2` could attach a draft somebody else had
|
|
126
|
+
made. Now it makes the draft:
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
dflash2 attach model.gguf -o model+draft.gguf --quant q4_m # embedded, one file
|
|
130
|
+
dflash1 model.gguf -o draft.gguf --quant int8 # for --model-draft
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
`dflash2` writes the draft into the base GGUF under a `dflash2.` prefix,
|
|
134
|
+
which is where the speed-up is: one file, one download, and a runtime
|
|
135
|
+
that has never heard of Dflash2 reads the base model straight through.
|
|
136
|
+
`dflash1` writes it as its own file for `llama-cli --model-draft`,
|
|
137
|
+
renumbering the kept blocks from zero and rewriting `<arch>.block_count`
|
|
138
|
+
to match — a draft that claims 32 blocks and ships 6 loads, and then
|
|
139
|
+
reads past the end of its own tensor table. It refuses a base with no
|
|
140
|
+
tokenizer rather than writing a draft nothing can sample from.
|
|
141
|
+
|
|
142
|
+
Both take nine targets: `q8`, `int8`, `fp16`, `bf16`, `fp32`, `IQ0.5`,
|
|
143
|
+
`Q6_K`, `Q4_M`, `int2` — and anything else `hyprslug` writes, because
|
|
144
|
+
they plan through it rather than keeping their own list. A draft at a
|
|
145
|
+
given tier is the same packing as a model at it.
|
|
146
|
+
|
|
147
|
+
**Several quantisations in one GGUF.**
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
hnx-bundle build model.gguf q8,q4_m,iq0.5 -o all.gguf
|
|
151
|
+
hnx-bundle list all.gguf
|
|
152
|
+
hnx-bundle extract all.gguf q4_m -o just-q4m.gguf
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
Variants live under `hnxq.<slug>.`, and the default one keeps the
|
|
156
|
+
ordinary tensor names — a stock llama.cpp opens the file and runs it
|
|
157
|
+
with nothing unusual happening. A bundle is roughly its variants added
|
|
158
|
+
together: what is stored once is the tensors every variant left
|
|
159
|
+
untouched byte for byte, which for most tiers is the 1-D norms rather
|
|
160
|
+
than the bulk. The point is not compression — it is one download
|
|
161
|
+
instead of five, one page cache instead of five, and switching tiers on
|
|
162
|
+
a served model without fetching anything.
|
|
163
|
+
|
|
164
|
+
**Five new quant targets.** `INT8` and `INT2` join the fixed-codebook
|
|
165
|
+
family; `FP32` / `FP16` / `BF16` are element widths and take their own
|
|
166
|
+
path. BF16 rounds to nearest even. FP16 saturates an overflow to 65504
|
|
167
|
+
only when the input was *finite*, so an infinity stays an infinity
|
|
168
|
+
instead of quietly becoming a large number that looks like data.
|
|
169
|
+
|
|
170
|
+
INT2 was expected to lose to FP2 and does not — 0.384 relRMS against
|
|
171
|
+
0.397 over twelve seeds, because ~40% of a weight tensor sits near zero
|
|
172
|
+
and INT2 spends a codeword there. Measurement in
|
|
173
|
+
[LowBit](wiki/LowBit.md).
|
|
174
|
+
|
|
175
|
+
**`tvtoppro` gets an intro, modules, and a watchdog.** `tvtop-older`'s
|
|
176
|
+
animated "decoding" startup text and the spinner, in tvtoppro's
|
|
177
|
+
presentation; a module system, so a new stat is a file that registers
|
|
178
|
+
itself rather than a patch to the renderer; and a stall detector —
|
|
179
|
+
`train.log` untouched for over a week means the run being watched is not
|
|
180
|
+
the run that is happening, so it finds the busiest Python process on the
|
|
181
|
+
machine and reads *its* logs and progress instead.
|
|
182
|
+
|
|
183
|
+
```bash
|
|
184
|
+
tvtoppro --find-run # go looking, rather than waiting on a dead log
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
**`cctvtop`'s Remote Desktop panel works.** It called a session live
|
|
188
|
+
whenever *something* held the port. The probe completes an RFB handshake
|
|
189
|
+
now, so a stale listener, a tunnel with nothing behind it and a real
|
|
190
|
+
desktop are three different answers — and when there is no session it
|
|
191
|
+
says which of four reasons applies rather than "unavailable".
|
|
192
|
+
|
|
193
|
+
**`noodle` runs inside `hyped-pro`.** `/noodle` in the TUI. It adopts
|
|
194
|
+
vendor keys already stored in the HyperNix config, with the environment
|
|
195
|
+
always winning over the stored copy, so a session that works in `hyped`
|
|
196
|
+
is not configured twice.
|
|
197
|
+
|
|
198
|
+
**The `hypernix` CLI says what was wrong.** An unknown subcommand used to
|
|
199
|
+
print usage and exit 0. It now goes to stderr, exits 2, and suggests the
|
|
200
|
+
nearest real command:
|
|
201
|
+
|
|
202
|
+
```
|
|
203
|
+
$ hypernix quantise
|
|
204
|
+
hypernix: unknown command 'quantise'
|
|
205
|
+
|
|
206
|
+
You want: hypernix quantize
|
|
207
|
+
|
|
208
|
+
hypernix --help every subcommand
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
**T1 v1.0.26.9.2.3 — an account without already having a key.** Sign-up
|
|
212
|
+
and browser sign-in, served four ways: from localhost, over Tailscale,
|
|
213
|
+
from the operator's own site, or from a prebuilt Cloudflare site hosted
|
|
214
|
+
by the API host.
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
t1-accounts create mason --admin # password prompted, never an argument
|
|
218
|
+
t1-accounts modes # what the four are, and what each needs
|
|
219
|
+
|
|
220
|
+
T1_ACCOUNTS_ENABLED=1 T1_ACCOUNTS_MODE=tailscale hypernix-t1 start
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
scrypt for passwords, constant-time comparison, CSRF on every form,
|
|
224
|
+
SameSite cookies, lockout after repeated failures, and `Secure` coupled
|
|
225
|
+
to whether the connection is actually TLS. A keyless caller never gets
|
|
226
|
+
administrator rights, in any of the four modes.
|
|
227
|
+
|
|
228
|
+
**Two security fixes.** The config file holding API keys was
|
|
229
|
+
world-readable; it is now written `0600` into a `0700` directory through
|
|
230
|
+
a temporary file and `os.replace`, and an existing file is tightened on
|
|
231
|
+
load. And key authentication compared key *strings*, in a loop whose
|
|
232
|
+
position depended on the prefix — a timing oracle for the stored keys.
|
|
233
|
+
Keys are indexed by digest and compared with `hmac.compare_digest`; the
|
|
234
|
+
measured 60x spread across probe keys is flat.
|
|
235
|
+
|
|
236
|
+
**HyperLink in a car, and out loud.** The iOS app gets a CarPlay scene,
|
|
237
|
+
four Siri intents, eight themes, an attachment menu that offers all four
|
|
238
|
+
ways in, and renaming.
|
|
239
|
+
|
|
240
|
+
- CarPlay shows a conversation list, `CPVoiceControlTemplate` dictation
|
|
241
|
+
and six canned replies — and a keyboard **only when the car reports it
|
|
242
|
+
will allow one**, read from `CPSessionConfiguration.limitedUserInterfaces`
|
|
243
|
+
on every use and rebuilt from its delegate, because the answer changes
|
|
244
|
+
while the app is running.
|
|
245
|
+
- "Siri, ask HyperLink what's the weather", "Siri, load the model Gemma 4
|
|
246
|
+
E2B on blazeindustries in HyperLink", "Siri, read me the HyperLink
|
|
247
|
+
chat". None of the four intents opens the app; the point of asking from
|
|
248
|
+
a car dock is that the phone stays where it is.
|
|
249
|
+
- Every theme's text clears WCAG AA against its own bubble, the two
|
|
250
|
+
bubbles are told apart by luminance, and so are "connected" and
|
|
251
|
+
"failed" — checked in `tests/test_hyperlink_ios_wiring.py`, which found
|
|
252
|
+
three that were not.
|
|
253
|
+
- A chat can be renamed. The server has taken a title on
|
|
254
|
+
`PATCH /hyperlink/sessions/{id}` since HyperLink shipped, and nothing
|
|
255
|
+
on the phone ever sent one.
|
|
256
|
+
|
|
257
|
+
CarPlay needs `com.apple.developer.carplay-communication`, which Apple
|
|
258
|
+
grants per app on request rather than with a paid account. Everything
|
|
259
|
+
else builds and runs without it.
|
|
260
|
+
|
|
261
|
+
**Docs.** Issue templates for bugs and for feature requests, and
|
|
262
|
+
[Model-Training-Guide](wiki/Model-Training-Guide.md) — which of these do
|
|
263
|
+
I use, and in what order. Every API in that guide was run against the
|
|
264
|
+
package rather than written from memory; six were wrong.
|
|
265
|
+
|
|
119
266
|
## What's new: 0.72.3.post2 — sub-bit models you can actually run
|
|
120
267
|
|
|
121
268
|
**The error this release is about.** LM Studio, opening a model this
|
|
@@ -237,21 +384,26 @@ directory:
|
|
|
237
384
|
|
|
238
385
|
| Directory | Modules | Contents |
|
|
239
386
|
|---|---|---|
|
|
387
|
+
| `hypernix/audio/` | 4 | Wake words, audio files and speech plumbing. |
|
|
240
388
|
| `hypernix/chat/` | 5 | Chat templating, prompt presets and multi-turn session state. |
|
|
241
|
-
| `hypernix/data/` |
|
|
389
|
+
| `hypernix/data/` | 17 | Datasets: collection, cleaning, splitting, packing and augmentation. |
|
|
242
390
|
| `hypernix/evaluation/` | 6 | Scoring, rubric labelling, judging and module verification. |
|
|
243
|
-
| `hypernix/
|
|
244
|
-
| `hypernix/
|
|
245
|
-
| `hypernix/
|
|
246
|
-
| `hypernix/
|
|
247
|
-
| `hypernix/
|
|
248
|
-
| `hypernix/
|
|
249
|
-
| `hypernix/
|
|
391
|
+
| `hypernix/hyperlink/` | 12 | The [HyperLink](wiki/HyperLink-Sync.md) server side: sessions, attachments, pairing, push. |
|
|
392
|
+
| `hypernix/interfaces/` | 19 | Human-facing front ends: CLIs, TUIs, GUIs, launchers and `noodle`. |
|
|
393
|
+
| `hypernix/models/` | 17 | Architectures, snapshot loading, generation and model utilities. |
|
|
394
|
+
| `hypernix/monitoring/` | 14 | Live dashboards, logging, telemetry and hardware sampling. |
|
|
395
|
+
| `hypernix/optimizers/` | 9 | The Pressure Cooker optimizer family and optimizer plumbing. |
|
|
396
|
+
| `hypernix/quant/` | 28 | The GGUF pipeline: convert, quantise, the sub-bit tiers, the draft builders, bundles, fetch tooling and upload. |
|
|
397
|
+
| `hypernix/scriptgen/` | 6 | The training-script builder behind `hnx-scriptgen`. |
|
|
398
|
+
| `hypernix/security/` | 6 | API keys, quotas and request gating. |
|
|
399
|
+
| `hypernix/system/` | 24 | Environment, dependencies, hardware and housekeeping. |
|
|
250
400
|
| `hypernix/timing/` | 5 | Timers, alarms, cadence control and progress animation. |
|
|
251
|
-
| `hypernix/training/` |
|
|
252
|
-
| `hypernix/t1api/` |
|
|
253
|
-
| `hypernix/t1sdk/` |
|
|
254
|
-
| `hypernix/waiter/` |
|
|
401
|
+
| `hypernix/training/` | 15 | Training entry points, schedules and weight perturbation. |
|
|
402
|
+
| `hypernix/t1api/` | 57 | The [T1 API](wiki/T1-API.md) server: registry, routing, quota, billing, audit, rate limiting, mTLS, accounts, web auth, deployment. |
|
|
403
|
+
| `hypernix/t1sdk/` | 4 | The T1 API client SDK — typed, stdlib-only, no server extra needed. |
|
|
404
|
+
| `hypernix/waiter/` | 7 | [`waiter`](wiki/Waiter-TUI.md), the official T1 API TUI/CLI. |
|
|
405
|
+
|
|
406
|
+
Counts are `.py` files excluding `__init__.py`, as of 0.72.5.
|
|
255
407
|
|
|
256
408
|
**Every module keeps its old import path.** `hypernix.timer` and
|
|
257
409
|
`hypernix.timing.timer` return the same module object, so nothing that
|
|
@@ -413,12 +565,9 @@ Eleven major additions:
|
|
|
413
565
|
- **tvtop++ fixes** — Eliminated border flicker (layout built once), added `_block_history_bar` re-export, implemented `small_mode`, fixed self-process filtering.
|
|
414
566
|
- **New wiki pages** — [Pressure-Cooker-V5](wiki/Pressure-Cooker-V5.md), [MTP](wiki/MTP.md), [Scavenger](wiki/Scavenger.md)
|
|
415
567
|
- **Kitchen.md updated** — Added scavenger, MTP, and QAT sections
|
|
416
|
-
- **Training benefits chart** — See below
|
|
417
568
|
|
|
418
569
|
### Training Benefits vs Complexity
|
|
419
570
|
|
|
420
|
-

|
|
421
|
-
|
|
422
571
|
> **Key insight**: MTP + Speculative Decoding offer the highest benefit-to-cost ratio. Int8-quantized momentum cuts the momentum buffer's own memory by 75% versus fp32, and PressureCookerV5/V5S's factored curvature keeps the rest of the optimizer state small too -- measured optimizer-state memory lands around 12-13% of AdamW's (see the [efficiency paper](pressure_cooker_v5_v5s_paper.md) for the exact numbers and methodology). The trade-offs -- including step-time overhead on some hardware -- are real and are covered in the paper rather than summarized as a single percentage here.
|
|
423
572
|
|
|
424
573
|
## What's new in v0.70.4
|
|
@@ -599,6 +748,10 @@ new_fridge.plot_loss_curve(new_fridge.parse_training_log(log), "loss.png")
|
|
|
599
748
|
|
|
600
749
|
## CLI reference
|
|
601
750
|
|
|
751
|
+
`hypernix --help` prints the authoritative list — this is the shape of
|
|
752
|
+
it. An unknown subcommand exits 2 on stderr and suggests the nearest
|
|
753
|
+
real one rather than printing usage and claiming success.
|
|
754
|
+
|
|
602
755
|
```
|
|
603
756
|
hypernix <subcommand> [options]
|
|
604
757
|
|
|
@@ -618,11 +771,39 @@ hypernix <subcommand> [options]
|
|
|
618
771
|
generate sample text from a local snapshot
|
|
619
772
|
oven code-generation wrapper (preheat + complete / fill)
|
|
620
773
|
chat interactive chat REPL against any supported model
|
|
621
|
-
|
|
622
|
-
|
|
774
|
+
brew custom architecture builder and training suite
|
|
775
|
+
fizzle fuse models and LoRAs (fiz)
|
|
776
|
+
fusebox GPU thermal governor: pace a run, trip on heat
|
|
777
|
+
devices what accelerators this machine has, and what they do
|
|
778
|
+
wakeup train a trigger phrase, then listen for it
|
|
779
|
+
websearch the search backend behind chat and the assistant
|
|
780
|
+
gather crawl a site into a corpus (robots-aware)
|
|
781
|
+
runtime use HyperNix's llama.cpp from LM Studio and friends
|
|
782
|
+
hyprslug-headers self-describing GGUF headers, and the sub-bit server
|
|
623
783
|
stml VRAM trained context length calculator
|
|
624
784
|
```
|
|
625
785
|
|
|
786
|
+
The rest are their own console scripts, because each is a program rather
|
|
787
|
+
than a step in the pipeline:
|
|
788
|
+
|
|
789
|
+
| Command | What it is |
|
|
790
|
+
|---|---|
|
|
791
|
+
| `hyped` / `hyped-pro` | The TUI agent CLI. `/gui` for a desktop window, `/t1api` to route through a T1 server, `/noodle` for the autonomous executor. |
|
|
792
|
+
| `hyprslug` (`doomslug`, `dstd`) | The quantiser, including the sub-bit tiers. |
|
|
793
|
+
| `dflash2` / `dflash1` | Speculative-decoding drafts: embedded in the base GGUF, or standalone for `--model-draft`. |
|
|
794
|
+
| `hnx-bundle` (`multiquant`) | Several quantisations in one GGUF. |
|
|
795
|
+
| `hnx-imatrix` | Importance matrices. |
|
|
796
|
+
| `steamroller` | The descending llama.cpp quantiser. |
|
|
797
|
+
| `tvtoppro` / `cctvtop` / `tvtop-old` / `tvtop-older` | The dashboards, newest to oldest. |
|
|
798
|
+
| `hnx-map` | The steampunk schematic TUI. |
|
|
799
|
+
| `hnx-scriptgen` | The training-script builder. |
|
|
800
|
+
| `waiter` | The T1 API's client TUI/CLI. Needs no server extra. |
|
|
801
|
+
| `t1-accounts` | Web accounts for a T1 server: create, reset, unlock, and the four deployment modes. |
|
|
802
|
+
| `gkey` | Gatekeeper + Keymaster, in one place. |
|
|
803
|
+
| `multilama` | One interface over vanilla llama.cpp, ik_llama.cpp, PrismML and KoboldCpp. |
|
|
804
|
+
| `noodle` | The autonomous multi-agent executor, standalone. |
|
|
805
|
+
| `eth` / `ups` | Ethanol, and the UPS monitor. |
|
|
806
|
+
|
|
626
807
|
`train run` accepts curriculum / context management flags:
|
|
627
808
|
|
|
628
809
|
```bash
|
|
@@ -723,6 +904,15 @@ Topic-focused reference guides live in the `wiki/` directory:
|
|
|
723
904
|
- [`wiki/Pressure-Cooker-V5.md`](wiki/Pressure-Cooker-V5.md) — Pressure Cooker V5 / V5+ / V5S with QAT and MTP
|
|
724
905
|
- [`wiki/MTP.md`](wiki/MTP.md) — Multi-Token Prediction guide
|
|
725
906
|
- [`wiki/Scavenger.md`](wiki/Scavenger.md) — HuggingFace dataset discovery
|
|
907
|
+
- [`wiki/Model-Training-Guide.md`](wiki/Model-Training-Guide.md) — which of these do I use, and in what order
|
|
908
|
+
- [`wiki/HyprSlug.md`](wiki/HyprSlug.md) — the sub-bit quantiser
|
|
909
|
+
- [`wiki/HyprSlug-Headers.md`](wiki/HyprSlug-Headers.md) — self-describing headers, the compat export, the sub-bit server
|
|
910
|
+
- [`wiki/LowBit.md`](wiki/LowBit.md) — the fixed-codebook tiers and the measurements behind them
|
|
911
|
+
- [`wiki/Dflash2.md`](wiki/Dflash2.md) — speculative-decoding drafts
|
|
912
|
+
- [`wiki/TvTopPro.md`](wiki/TvTopPro.md) — the dashboard, its themes and its modules
|
|
913
|
+
- [`wiki/T1-API.md`](wiki/T1-API.md) — the T1 API server
|
|
914
|
+
- [`wiki/HyperLink-Sync.md`](wiki/HyperLink-Sync.md) — the phone app and what it talks to
|
|
915
|
+
- [`wiki/Roadmap.md`](wiki/Roadmap.md) — what is planned, and what landed
|
|
726
916
|
|
|
727
917
|
## How the GGUF pipeline works
|
|
728
918
|
|
|
@@ -13,12 +13,15 @@
|
|
|
13
13
|
**End-to-end toolkit for training ai models on modern or old devices, originaly for converting hypernix.1 into gguf, now for all around training**
|
|
14
14
|
|
|
15
15
|
## What's fixed in this update
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
|
|
17
|
+
The section below covers what 0.72.5 adds.
|
|
18
|
+
[`wiki/Changelog.md`](wiki/Changelog.md) is the canonical per-release
|
|
19
|
+
history, and [`wiki/Roadmap.md`](wiki/Roadmap.md) says what is next.
|
|
18
20
|
|
|
19
21
|
## Table of contents
|
|
20
22
|
|
|
21
23
|
- [What's fixed in this update](#whats-fixed-in-this-update)
|
|
24
|
+
- [What's new: 0.72.5 — drafts, bundles, accounts, and a car](#whats-new-0725--drafts-bundles-accounts-and-a-car)
|
|
22
25
|
- [What's new: 0.72.3.post2 — sub-bit models you can actually run](#whats-new-0723post2--sub-bit-models-you-can-actually-run)
|
|
23
26
|
- [What's new: 0.72.3 — T1 v1.0.2026.8.1.1](#whats-new-0723--t1-v102026811)
|
|
24
27
|
- [Package layout](#package-layout)
|
|
@@ -42,6 +45,150 @@ for most updates
|
|
|
42
45
|
|
|
43
46
|
Cross-platform: Linux, macOS, Windows. Python 3.10 - 3.14.
|
|
44
47
|
|
|
48
|
+
## What's new: 0.72.5 — drafts, bundles, accounts, and a car
|
|
49
|
+
|
|
50
|
+
**Speculative decoding, in both shapes.** `hyprslug` produced a
|
|
51
|
+
quantised model and `dflash2` could attach a draft somebody else had
|
|
52
|
+
made. Now it makes the draft:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
dflash2 attach model.gguf -o model+draft.gguf --quant q4_m # embedded, one file
|
|
56
|
+
dflash1 model.gguf -o draft.gguf --quant int8 # for --model-draft
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
`dflash2` writes the draft into the base GGUF under a `dflash2.` prefix,
|
|
60
|
+
which is where the speed-up is: one file, one download, and a runtime
|
|
61
|
+
that has never heard of Dflash2 reads the base model straight through.
|
|
62
|
+
`dflash1` writes it as its own file for `llama-cli --model-draft`,
|
|
63
|
+
renumbering the kept blocks from zero and rewriting `<arch>.block_count`
|
|
64
|
+
to match — a draft that claims 32 blocks and ships 6 loads, and then
|
|
65
|
+
reads past the end of its own tensor table. It refuses a base with no
|
|
66
|
+
tokenizer rather than writing a draft nothing can sample from.
|
|
67
|
+
|
|
68
|
+
Both take nine targets: `q8`, `int8`, `fp16`, `bf16`, `fp32`, `IQ0.5`,
|
|
69
|
+
`Q6_K`, `Q4_M`, `int2` — and anything else `hyprslug` writes, because
|
|
70
|
+
they plan through it rather than keeping their own list. A draft at a
|
|
71
|
+
given tier is the same packing as a model at it.
|
|
72
|
+
|
|
73
|
+
**Several quantisations in one GGUF.**
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
hnx-bundle build model.gguf q8,q4_m,iq0.5 -o all.gguf
|
|
77
|
+
hnx-bundle list all.gguf
|
|
78
|
+
hnx-bundle extract all.gguf q4_m -o just-q4m.gguf
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Variants live under `hnxq.<slug>.`, and the default one keeps the
|
|
82
|
+
ordinary tensor names — a stock llama.cpp opens the file and runs it
|
|
83
|
+
with nothing unusual happening. A bundle is roughly its variants added
|
|
84
|
+
together: what is stored once is the tensors every variant left
|
|
85
|
+
untouched byte for byte, which for most tiers is the 1-D norms rather
|
|
86
|
+
than the bulk. The point is not compression — it is one download
|
|
87
|
+
instead of five, one page cache instead of five, and switching tiers on
|
|
88
|
+
a served model without fetching anything.
|
|
89
|
+
|
|
90
|
+
**Five new quant targets.** `INT8` and `INT2` join the fixed-codebook
|
|
91
|
+
family; `FP32` / `FP16` / `BF16` are element widths and take their own
|
|
92
|
+
path. BF16 rounds to nearest even. FP16 saturates an overflow to 65504
|
|
93
|
+
only when the input was *finite*, so an infinity stays an infinity
|
|
94
|
+
instead of quietly becoming a large number that looks like data.
|
|
95
|
+
|
|
96
|
+
INT2 was expected to lose to FP2 and does not — 0.384 relRMS against
|
|
97
|
+
0.397 over twelve seeds, because ~40% of a weight tensor sits near zero
|
|
98
|
+
and INT2 spends a codeword there. Measurement in
|
|
99
|
+
[LowBit](wiki/LowBit.md).
|
|
100
|
+
|
|
101
|
+
**`tvtoppro` gets an intro, modules, and a watchdog.** `tvtop-older`'s
|
|
102
|
+
animated "decoding" startup text and the spinner, in tvtoppro's
|
|
103
|
+
presentation; a module system, so a new stat is a file that registers
|
|
104
|
+
itself rather than a patch to the renderer; and a stall detector —
|
|
105
|
+
`train.log` untouched for over a week means the run being watched is not
|
|
106
|
+
the run that is happening, so it finds the busiest Python process on the
|
|
107
|
+
machine and reads *its* logs and progress instead.
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
tvtoppro --find-run # go looking, rather than waiting on a dead log
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
**`cctvtop`'s Remote Desktop panel works.** It called a session live
|
|
114
|
+
whenever *something* held the port. The probe completes an RFB handshake
|
|
115
|
+
now, so a stale listener, a tunnel with nothing behind it and a real
|
|
116
|
+
desktop are three different answers — and when there is no session it
|
|
117
|
+
says which of four reasons applies rather than "unavailable".
|
|
118
|
+
|
|
119
|
+
**`noodle` runs inside `hyped-pro`.** `/noodle` in the TUI. It adopts
|
|
120
|
+
vendor keys already stored in the HyperNix config, with the environment
|
|
121
|
+
always winning over the stored copy, so a session that works in `hyped`
|
|
122
|
+
is not configured twice.
|
|
123
|
+
|
|
124
|
+
**The `hypernix` CLI says what was wrong.** An unknown subcommand used to
|
|
125
|
+
print usage and exit 0. It now goes to stderr, exits 2, and suggests the
|
|
126
|
+
nearest real command:
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
$ hypernix quantise
|
|
130
|
+
hypernix: unknown command 'quantise'
|
|
131
|
+
|
|
132
|
+
You want: hypernix quantize
|
|
133
|
+
|
|
134
|
+
hypernix --help every subcommand
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
**T1 v1.0.26.9.2.3 — an account without already having a key.** Sign-up
|
|
138
|
+
and browser sign-in, served four ways: from localhost, over Tailscale,
|
|
139
|
+
from the operator's own site, or from a prebuilt Cloudflare site hosted
|
|
140
|
+
by the API host.
|
|
141
|
+
|
|
142
|
+
```bash
|
|
143
|
+
t1-accounts create mason --admin # password prompted, never an argument
|
|
144
|
+
t1-accounts modes # what the four are, and what each needs
|
|
145
|
+
|
|
146
|
+
T1_ACCOUNTS_ENABLED=1 T1_ACCOUNTS_MODE=tailscale hypernix-t1 start
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
scrypt for passwords, constant-time comparison, CSRF on every form,
|
|
150
|
+
SameSite cookies, lockout after repeated failures, and `Secure` coupled
|
|
151
|
+
to whether the connection is actually TLS. A keyless caller never gets
|
|
152
|
+
administrator rights, in any of the four modes.
|
|
153
|
+
|
|
154
|
+
**Two security fixes.** The config file holding API keys was
|
|
155
|
+
world-readable; it is now written `0600` into a `0700` directory through
|
|
156
|
+
a temporary file and `os.replace`, and an existing file is tightened on
|
|
157
|
+
load. And key authentication compared key *strings*, in a loop whose
|
|
158
|
+
position depended on the prefix — a timing oracle for the stored keys.
|
|
159
|
+
Keys are indexed by digest and compared with `hmac.compare_digest`; the
|
|
160
|
+
measured 60x spread across probe keys is flat.
|
|
161
|
+
|
|
162
|
+
**HyperLink in a car, and out loud.** The iOS app gets a CarPlay scene,
|
|
163
|
+
four Siri intents, eight themes, an attachment menu that offers all four
|
|
164
|
+
ways in, and renaming.
|
|
165
|
+
|
|
166
|
+
- CarPlay shows a conversation list, `CPVoiceControlTemplate` dictation
|
|
167
|
+
and six canned replies — and a keyboard **only when the car reports it
|
|
168
|
+
will allow one**, read from `CPSessionConfiguration.limitedUserInterfaces`
|
|
169
|
+
on every use and rebuilt from its delegate, because the answer changes
|
|
170
|
+
while the app is running.
|
|
171
|
+
- "Siri, ask HyperLink what's the weather", "Siri, load the model Gemma 4
|
|
172
|
+
E2B on blazeindustries in HyperLink", "Siri, read me the HyperLink
|
|
173
|
+
chat". None of the four intents opens the app; the point of asking from
|
|
174
|
+
a car dock is that the phone stays where it is.
|
|
175
|
+
- Every theme's text clears WCAG AA against its own bubble, the two
|
|
176
|
+
bubbles are told apart by luminance, and so are "connected" and
|
|
177
|
+
"failed" — checked in `tests/test_hyperlink_ios_wiring.py`, which found
|
|
178
|
+
three that were not.
|
|
179
|
+
- A chat can be renamed. The server has taken a title on
|
|
180
|
+
`PATCH /hyperlink/sessions/{id}` since HyperLink shipped, and nothing
|
|
181
|
+
on the phone ever sent one.
|
|
182
|
+
|
|
183
|
+
CarPlay needs `com.apple.developer.carplay-communication`, which Apple
|
|
184
|
+
grants per app on request rather than with a paid account. Everything
|
|
185
|
+
else builds and runs without it.
|
|
186
|
+
|
|
187
|
+
**Docs.** Issue templates for bugs and for feature requests, and
|
|
188
|
+
[Model-Training-Guide](wiki/Model-Training-Guide.md) — which of these do
|
|
189
|
+
I use, and in what order. Every API in that guide was run against the
|
|
190
|
+
package rather than written from memory; six were wrong.
|
|
191
|
+
|
|
45
192
|
## What's new: 0.72.3.post2 — sub-bit models you can actually run
|
|
46
193
|
|
|
47
194
|
**The error this release is about.** LM Studio, opening a model this
|
|
@@ -163,21 +310,26 @@ directory:
|
|
|
163
310
|
|
|
164
311
|
| Directory | Modules | Contents |
|
|
165
312
|
|---|---|---|
|
|
313
|
+
| `hypernix/audio/` | 4 | Wake words, audio files and speech plumbing. |
|
|
166
314
|
| `hypernix/chat/` | 5 | Chat templating, prompt presets and multi-turn session state. |
|
|
167
|
-
| `hypernix/data/` |
|
|
315
|
+
| `hypernix/data/` | 17 | Datasets: collection, cleaning, splitting, packing and augmentation. |
|
|
168
316
|
| `hypernix/evaluation/` | 6 | Scoring, rubric labelling, judging and module verification. |
|
|
169
|
-
| `hypernix/
|
|
170
|
-
| `hypernix/
|
|
171
|
-
| `hypernix/
|
|
172
|
-
| `hypernix/
|
|
173
|
-
| `hypernix/
|
|
174
|
-
| `hypernix/
|
|
175
|
-
| `hypernix/
|
|
317
|
+
| `hypernix/hyperlink/` | 12 | The [HyperLink](wiki/HyperLink-Sync.md) server side: sessions, attachments, pairing, push. |
|
|
318
|
+
| `hypernix/interfaces/` | 19 | Human-facing front ends: CLIs, TUIs, GUIs, launchers and `noodle`. |
|
|
319
|
+
| `hypernix/models/` | 17 | Architectures, snapshot loading, generation and model utilities. |
|
|
320
|
+
| `hypernix/monitoring/` | 14 | Live dashboards, logging, telemetry and hardware sampling. |
|
|
321
|
+
| `hypernix/optimizers/` | 9 | The Pressure Cooker optimizer family and optimizer plumbing. |
|
|
322
|
+
| `hypernix/quant/` | 28 | The GGUF pipeline: convert, quantise, the sub-bit tiers, the draft builders, bundles, fetch tooling and upload. |
|
|
323
|
+
| `hypernix/scriptgen/` | 6 | The training-script builder behind `hnx-scriptgen`. |
|
|
324
|
+
| `hypernix/security/` | 6 | API keys, quotas and request gating. |
|
|
325
|
+
| `hypernix/system/` | 24 | Environment, dependencies, hardware and housekeeping. |
|
|
176
326
|
| `hypernix/timing/` | 5 | Timers, alarms, cadence control and progress animation. |
|
|
177
|
-
| `hypernix/training/` |
|
|
178
|
-
| `hypernix/t1api/` |
|
|
179
|
-
| `hypernix/t1sdk/` |
|
|
180
|
-
| `hypernix/waiter/` |
|
|
327
|
+
| `hypernix/training/` | 15 | Training entry points, schedules and weight perturbation. |
|
|
328
|
+
| `hypernix/t1api/` | 57 | The [T1 API](wiki/T1-API.md) server: registry, routing, quota, billing, audit, rate limiting, mTLS, accounts, web auth, deployment. |
|
|
329
|
+
| `hypernix/t1sdk/` | 4 | The T1 API client SDK — typed, stdlib-only, no server extra needed. |
|
|
330
|
+
| `hypernix/waiter/` | 7 | [`waiter`](wiki/Waiter-TUI.md), the official T1 API TUI/CLI. |
|
|
331
|
+
|
|
332
|
+
Counts are `.py` files excluding `__init__.py`, as of 0.72.5.
|
|
181
333
|
|
|
182
334
|
**Every module keeps its old import path.** `hypernix.timer` and
|
|
183
335
|
`hypernix.timing.timer` return the same module object, so nothing that
|
|
@@ -339,12 +491,9 @@ Eleven major additions:
|
|
|
339
491
|
- **tvtop++ fixes** — Eliminated border flicker (layout built once), added `_block_history_bar` re-export, implemented `small_mode`, fixed self-process filtering.
|
|
340
492
|
- **New wiki pages** — [Pressure-Cooker-V5](wiki/Pressure-Cooker-V5.md), [MTP](wiki/MTP.md), [Scavenger](wiki/Scavenger.md)
|
|
341
493
|
- **Kitchen.md updated** — Added scavenger, MTP, and QAT sections
|
|
342
|
-
- **Training benefits chart** — See below
|
|
343
494
|
|
|
344
495
|
### Training Benefits vs Complexity
|
|
345
496
|
|
|
346
|
-

|
|
347
|
-
|
|
348
497
|
> **Key insight**: MTP + Speculative Decoding offer the highest benefit-to-cost ratio. Int8-quantized momentum cuts the momentum buffer's own memory by 75% versus fp32, and PressureCookerV5/V5S's factored curvature keeps the rest of the optimizer state small too -- measured optimizer-state memory lands around 12-13% of AdamW's (see the [efficiency paper](pressure_cooker_v5_v5s_paper.md) for the exact numbers and methodology). The trade-offs -- including step-time overhead on some hardware -- are real and are covered in the paper rather than summarized as a single percentage here.
|
|
349
498
|
|
|
350
499
|
## What's new in v0.70.4
|
|
@@ -525,6 +674,10 @@ new_fridge.plot_loss_curve(new_fridge.parse_training_log(log), "loss.png")
|
|
|
525
674
|
|
|
526
675
|
## CLI reference
|
|
527
676
|
|
|
677
|
+
`hypernix --help` prints the authoritative list — this is the shape of
|
|
678
|
+
it. An unknown subcommand exits 2 on stderr and suggests the nearest
|
|
679
|
+
real one rather than printing usage and claiming success.
|
|
680
|
+
|
|
528
681
|
```
|
|
529
682
|
hypernix <subcommand> [options]
|
|
530
683
|
|
|
@@ -544,11 +697,39 @@ hypernix <subcommand> [options]
|
|
|
544
697
|
generate sample text from a local snapshot
|
|
545
698
|
oven code-generation wrapper (preheat + complete / fill)
|
|
546
699
|
chat interactive chat REPL against any supported model
|
|
547
|
-
|
|
548
|
-
|
|
700
|
+
brew custom architecture builder and training suite
|
|
701
|
+
fizzle fuse models and LoRAs (fiz)
|
|
702
|
+
fusebox GPU thermal governor: pace a run, trip on heat
|
|
703
|
+
devices what accelerators this machine has, and what they do
|
|
704
|
+
wakeup train a trigger phrase, then listen for it
|
|
705
|
+
websearch the search backend behind chat and the assistant
|
|
706
|
+
gather crawl a site into a corpus (robots-aware)
|
|
707
|
+
runtime use HyperNix's llama.cpp from LM Studio and friends
|
|
708
|
+
hyprslug-headers self-describing GGUF headers, and the sub-bit server
|
|
549
709
|
stml VRAM trained context length calculator
|
|
550
710
|
```
|
|
551
711
|
|
|
712
|
+
The rest are their own console scripts, because each is a program rather
|
|
713
|
+
than a step in the pipeline:
|
|
714
|
+
|
|
715
|
+
| Command | What it is |
|
|
716
|
+
|---|---|
|
|
717
|
+
| `hyped` / `hyped-pro` | The TUI agent CLI. `/gui` for a desktop window, `/t1api` to route through a T1 server, `/noodle` for the autonomous executor. |
|
|
718
|
+
| `hyprslug` (`doomslug`, `dstd`) | The quantiser, including the sub-bit tiers. |
|
|
719
|
+
| `dflash2` / `dflash1` | Speculative-decoding drafts: embedded in the base GGUF, or standalone for `--model-draft`. |
|
|
720
|
+
| `hnx-bundle` (`multiquant`) | Several quantisations in one GGUF. |
|
|
721
|
+
| `hnx-imatrix` | Importance matrices. |
|
|
722
|
+
| `steamroller` | The descending llama.cpp quantiser. |
|
|
723
|
+
| `tvtoppro` / `cctvtop` / `tvtop-old` / `tvtop-older` | The dashboards, newest to oldest. |
|
|
724
|
+
| `hnx-map` | The steampunk schematic TUI. |
|
|
725
|
+
| `hnx-scriptgen` | The training-script builder. |
|
|
726
|
+
| `waiter` | The T1 API's client TUI/CLI. Needs no server extra. |
|
|
727
|
+
| `t1-accounts` | Web accounts for a T1 server: create, reset, unlock, and the four deployment modes. |
|
|
728
|
+
| `gkey` | Gatekeeper + Keymaster, in one place. |
|
|
729
|
+
| `multilama` | One interface over vanilla llama.cpp, ik_llama.cpp, PrismML and KoboldCpp. |
|
|
730
|
+
| `noodle` | The autonomous multi-agent executor, standalone. |
|
|
731
|
+
| `eth` / `ups` | Ethanol, and the UPS monitor. |
|
|
732
|
+
|
|
552
733
|
`train run` accepts curriculum / context management flags:
|
|
553
734
|
|
|
554
735
|
```bash
|
|
@@ -649,6 +830,15 @@ Topic-focused reference guides live in the `wiki/` directory:
|
|
|
649
830
|
- [`wiki/Pressure-Cooker-V5.md`](wiki/Pressure-Cooker-V5.md) — Pressure Cooker V5 / V5+ / V5S with QAT and MTP
|
|
650
831
|
- [`wiki/MTP.md`](wiki/MTP.md) — Multi-Token Prediction guide
|
|
651
832
|
- [`wiki/Scavenger.md`](wiki/Scavenger.md) — HuggingFace dataset discovery
|
|
833
|
+
- [`wiki/Model-Training-Guide.md`](wiki/Model-Training-Guide.md) — which of these do I use, and in what order
|
|
834
|
+
- [`wiki/HyprSlug.md`](wiki/HyprSlug.md) — the sub-bit quantiser
|
|
835
|
+
- [`wiki/HyprSlug-Headers.md`](wiki/HyprSlug-Headers.md) — self-describing headers, the compat export, the sub-bit server
|
|
836
|
+
- [`wiki/LowBit.md`](wiki/LowBit.md) — the fixed-codebook tiers and the measurements behind them
|
|
837
|
+
- [`wiki/Dflash2.md`](wiki/Dflash2.md) — speculative-decoding drafts
|
|
838
|
+
- [`wiki/TvTopPro.md`](wiki/TvTopPro.md) — the dashboard, its themes and its modules
|
|
839
|
+
- [`wiki/T1-API.md`](wiki/T1-API.md) — the T1 API server
|
|
840
|
+
- [`wiki/HyperLink-Sync.md`](wiki/HyperLink-Sync.md) — the phone app and what it talks to
|
|
841
|
+
- [`wiki/Roadmap.md`](wiki/Roadmap.md) — what is planned, and what landed
|
|
652
842
|
|
|
653
843
|
## How the GGUF pipeline works
|
|
654
844
|
|