docs(alpha,#1408): refresh canary lane state#1414
Merged
Merged
Conversation
joelteply
added a commit
that referenced
this pull request
May 18, 2026
…el_registry/ (#1430) Closes the audit smell codex flagged in #1414 / earlier scan: 'models/ AND model_registry/ separate dirs. models/mod.rs is the only file in models/ but it's still actively imported ... Old source-of-truth ghost that should be deleted but persists.' Per Joel's "we are not in some maintenance mode — zero users, FULLBLOWN rust driven dev" calibration: no transition period, no deprecation shim. Move the file to its new home, fix the one import site, delete the empty dir. ## What changed - `src/models/mod.rs` (352 LOC, model-discovery HTTP layer) → `src/model_registry/discovery.rs` (single move, no content change — git rename detected) - `src/lib.rs`: remove `pub mod models;` (one line) - `src/model_registry/mod.rs`: add `pub mod discovery;` - `src/modules/models.rs`: `use crate::models::{ProviderConfig, discover_all};` → `use crate::model_registry::discovery::{discover_all, ProviderConfig};` ## Why this is conceptually right `models/` was the live-discovery layer (queries OpenAI / Groq / Together API endpoints for available models). `model_registry/` is the curated static catalog (Rust code post-#1424). Both are model-metadata responsibilities; both belong under ONE umbrella. The names diverged historically — `models/` predates `model_registry/`. Lane A's #1424 made `model_registry/` the canonical Rust-truth home; this PR closes the loop by pulling discovery into the same module tree. The discovery vs catalog distinction is preserved (it's two sub-modules now, not two top-level dirs), so callers that need "live API discovery" still get the explicit `discovery::` namespace. ## Validation - `cargo build --features metal,accelerate --lib` clean (no errors, no new warnings) - `cargo test --features metal,accelerate --lib model_registry` 16 tests pass Co-authored-by: Test <test@test.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Validation
Closes #1408