docs: use gemini-3.7-flash in the model-selection example - #80
Open
Svilen-Stefanov wants to merge 1 commit into
Open
docs: use gemini-3.7-flash in the model-selection example#80Svilen-Stefanov wants to merge 1 commit into
Svilen-Stefanov wants to merge 1 commit into
Conversation
CodeBoarding/CodeBoarding#485 moves the default agent model to the GA gemini-3.7-flash. main hardcodes no model defaults — every model input defaults to empty and with-auth.sh only exports AGENT_MODEL/PARSING_MODEL when supplied — so the action inherits the new default automatically and the example was the last reference to the old preview model. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Contributor
CodeBoarding reviewStatus: 0 changed components See the full change in CodeBoarding. graph LR
n_Visual_Rendering_Engine["Visual Rendering Engine"]
n_Structural_Diff_Engine["Structural Diff Engine"]
n_Interaction_Orchestrator["Interaction Orchestrator"]
n_Visual_Rendering_Engine -- "Returns rendering metadata and diagram artifacts" --> n_Interaction_Orchestrator
n_Structural_Diff_Engine -- "Provides annotated diff model for visualization" --> n_Visual_Rendering_Engine
n_Interaction_Orchestrator -- "Triggers structural comparison via CLI" --> n_Structural_Diff_Engine
classDef added fill:#1f883d,stroke:#0b5d23,color:#ffffff;
classDef modified fill:#bf8700,stroke:#7d4e00,color:#ffffff;
classDef deleted fill:#cf222e,stroke:#82071e,color:#ffffff,stroke-dasharray:5 3;
|
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.
Refreshes the model-selection example, which still showed
google/gemini-3-flash-preview. CodeBoarding#485 moves the default agent model for every Gemini-serving provider to the GAgemini-3.7-flash.Why this is only a docs change
maincarries no hardcoded model defaults. All three model inputs (model,agent_model,parsing_model) default to empty, andscripts/action/with-auth.shexportsAGENT_MODEL/PARSING_MODELonly when something was actually supplied. So when a consumer pins nothing, the action already falls through to Core's per-provider defaults inLLM_PROVIDERS— and CodeBoarding#485 updates those. The action picks up the new default on its own; the example was just the last place naming the old model.gemini-3.7-flashis GA, newer, and cheaper than the preview it replaces, at the same 1M context: $0.38/$1.88 per 1M in/out versus $0.50/$3.00. On the hosted tier that spend is CodeBoarding's, so it is a direct saving.Heads-up for
feat/sync-pull-request-strategyThat branch still carries the older shape, where
action.ymlhardcodesAGENT_MODEL="${AGENT_MODEL:-google/gemini-3-flash-preview}"andPARSING_MODEL="${PARSING_MODEL:-google/gemini-3.1-flash-lite-preview}"in two places (hosted tier and BYO-key OpenRouter), plus both input descriptions and the README inputs table. If it merges as-is it will reintroduce the preview model as the action's default and shadow Core's. Worth rebasing those defaults away rather than updating them, sincemainhas deliberately stopped defaulting model names action-side.