File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 strategy :
1616 fail-fast : false
1717 matrix :
18- python-version : ["3.9 ", "3.11", "3.12"]
18+ python-version : ["3.10 ", "3.11", "3.12"]
1919
2020 steps :
2121 - name : Check out code
Original file line number Diff line number Diff line change @@ -206,12 +206,11 @@ def generate_message(
206206 # 2. If --deep is passed, upgrade to gemini-3-pro-preview
207207 # (unless -m is explicitly distinct)
208208 if deep :
209- # If user didn't explicitly change the default model string,
210- # upgrade to Pro
211- # If user explicitly set a model AND used --deep,
212- # we respect the explicit model but could warn (or just use it)
213- pass
214- pass
209+ # Upgrade to Pro model if deep flag is set
210+ # We override the model unless the user explicitly chose a different one
211+ # (For simplicity here, we assume --deep implies pro)
212+ if model == "gemini-3-flash-preview" :
213+ model = "gemini-3-pro-preview"
215214
216215 llm = _initialize_llm (model )
217216
You can’t perform that action at this time.
0 commit comments