Fix Daily Cache Strategy Analyzer codex model variant to avoid model-not-found failures#41541
Conversation
This comment has been minimized.
This comment has been minimized.
|
Hey
When you're ready to implement, here's a prompt you can hand off to your coding agent:
|
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
This pull request updates the Daily Cache Strategy Analyzer workflow’s experiment model variants to use a codex-available mini variant, preventing recurring model-not-found failures in scheduled codex runs and keeping the compiled workflow in sync.
Changes:
- Updated the workflow frontmatter experiment variants from
gpt-5-minitogpt-5.4-miniand aligned the hypothesis text accordingly. - Regenerated the compiled
.lock.ymlsoGH_AW_EXPERIMENT_SPECmatches the updated frontmatter. - Updated the guardrail test to assert the new expected variant set.
Show a summary per file
| File | Description |
|---|---|
pkg/workflow/prompts_test.go |
Adjusts the frontmatter assertion test to expect gpt-5.4-mini instead of gpt-5-mini. |
.github/workflows/daily-cache-strategy-analyzer.md |
Updates experiment variants and hypothesis to use a codex-compatible mini variant. |
.github/workflows/daily-cache-strategy-analyzer.lock.yml |
Syncs compiled workflow metadata and embedded experiment spec to the updated frontmatter. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 3/3 changed files
- Comments generated: 0
Daily Cache Strategy Analyzer was failing consistently in codex runs due to a recurring
model-not-foundpath on the mini variant. This updates the experiment model set to use a codex-available mini variant so scheduled runs can complete and stop emitting the recurring failure signature.Workflow experiment model correction
.github/workflows/daily-cache-strategy-analyzer.md:experiments.model_size.variantsfrom[gpt-5.4, gpt-5-mini]to[gpt-5.4, gpt-5.4-mini]Compiled workflow sync
.github/workflows/daily-cache-strategy-analyzer.lock.ymlso runtime experiment spec matches source workflow frontmatter.Guardrail test alignment
pkg/workflow/prompts_test.go(TestDailyCacheStrategyAnalyzerUsesCodexCompatibleModelsForExperiment) to assert the new expected variant set.