Refresh grok docs: CLI now serves grok-4.5, not grok-build/grok-composer-2.5-fast - #92
Open
tillemetry wants to merge 2 commits into
Open
Conversation
…ser-2.5-fast Grok Build CLI v0.2.111 collapsed its model lineup to a single model id, grok-4.5; the old grok-build / grok-composer-2.5-fast slugs now return 'unknown model id'. Update config.sample.toml default + comments and the README plan-lane routing example, and point readers at 'grok models'.
Adds an [engines.grok.models."grok-4.5"] identity entry and makes it the grok engine default, so runs on the current CLI (which serves grok-4.5) no longer show as 'unregistered' in the scoreboard. The retired grok-build / grok-composer-2.5-fast slugs stay registered for historical row identity; the noncanonical opencode->grok misroute mapping moves to grok-4.5. All identity/taxonomy tests pass (29).
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.
What
The Grok Build CLI collapsed its model lineup. As of v0.2.111 (
grok modelson an OAuth plan) the CLI serves a single model id,grok-4.5. The old slugsgrok-buildandgrok-composer-2.5-fastnow returnInvalid params: "unknown model id".Because
config.sample.tomlshipsmodel_default = "grok-composer-2.5-fast"and the README's plan-lane example routes togrok-build/grok-composer-2.5-fast, anyone whose Grok CLI has auto-updated past ~v0.2.81 hits an "unknown model id" error the moment they enable the grok lane — the sample default is dead on arrival.Changes (docs, sample-config, and registry — no engine code)
config.sample.toml:model_default→grok-4.5; comments now state the CLI servesgrok-4.5, flag that the old slugs return "unknown model id", and point readers atgrok modelsto see what their installed CLI actually offers. Version stamps bumped to v0.2.111 (--no-auto-updateand the no-token-fields note re-verified on v0.2.111).README.md: plan-lane routing example →"model": "grok-4.5", with the samegrok modelspointer and a note that older v0.2.x also exposed the retired slugs.registry/model-identity.toml: adds an[engines.grok.models."grok-4.5"]identity entry and makes it the grok engine default, so runs on the current CLI stop showing asunregisteredin the scoreboard. The retiredgrok-build/grok-composer-2.5-fastentries stay for historical row identity; the noncanonical opencode→grok misroute mapping moves ontogrok-4.5. All identity/taxonomy tests pass (29).How verified
grok --version→grok 0.2.111;grok modelslists onlygrok-4.5(default).engine: "grok",model: "grok-4.5": worker authored working code, the executed check ran it green (exit 0). First-attempt PASS. The same probe withmodel: "grok-composer-2.5-fast"failed withunknown model id.Not included
registry/model-capabilities/grok-4.5.toml(the detailed capability/evidence file) is not added — those files carry sourced auth/streaming/rate-limit claims that need a real research pass, and I didn't want to fabricate them. The existinggrok-build.toml/grok-composer-2.5-fast.tomlcapability files are left as-is. Happy to add a properly-sourcedgrok-4.5.tomlin a follow-up.