mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
Upgrade parity matrix OpenAI model from gpt-5-mini to gpt-5.4-mini
gpt-5-mini is not supported on the ChatGPT/Codex backend, causing all 16 OpenAI parity tests to fail when using browser-auth credentials. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
2bbc0d3ef9
commit
60e10cb78e
1 changed files with 3 additions and 3 deletions
|
|
@ -14,7 +14,7 @@ fn summarizer_model_id(provider: Provider) -> ModelId {
|
|||
| Provider::Kimi
|
||||
| Provider::Zai
|
||||
| Provider::Minimax
|
||||
| Provider::Inception => ModelId::new(Provider::OpenAi, "gpt-5-mini"),
|
||||
| Provider::Inception => ModelId::new(Provider::OpenAi, "gpt-5.4-mini"),
|
||||
Provider::Gemini => ModelId::new(Provider::Gemini, "gemini-3-flash-preview"),
|
||||
Provider::Anthropic => ModelId::new(Provider::Anthropic, "claude-haiku-4-5"),
|
||||
}
|
||||
|
|
@ -126,7 +126,7 @@ macro_rules! provider_tests {
|
|||
"claude-haiku-4-5",
|
||||
anthropic
|
||||
);
|
||||
provider_test!($scenario, Provider::OpenAi, "gpt-5-mini", openai);
|
||||
provider_test!($scenario, Provider::OpenAi, "gpt-5.4-mini", openai);
|
||||
provider_test!(
|
||||
$scenario,
|
||||
Provider::Gemini,
|
||||
|
|
@ -487,7 +487,7 @@ loop_detection_tests!(
|
|||
"claude-haiku-4-5",
|
||||
anthropic_loop_detection
|
||||
);
|
||||
loop_detection_tests!(Provider::OpenAi, "gpt-5-mini", openai_loop_detection);
|
||||
loop_detection_tests!(Provider::OpenAi, "gpt-5.4-mini", openai_loop_detection);
|
||||
loop_detection_tests!(
|
||||
Provider::Gemini,
|
||||
"gemini-3-flash-preview",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue