Update models.json (#18586)

- Replace the active models-manager catalog with the deleted core
catalog contents.
- Replace stale hardcoded test model slugs with current bundled model
slugs.
- Keep this as a stacked change on top of the cleanup PR.
This commit is contained in:
Ahmed Ibrahim
2026-04-20 10:27:01 -07:00
committed by GitHub
parent 5d5d610740
commit 316cf0e90b
63 changed files with 540 additions and 1016 deletions

View File

@@ -85,7 +85,7 @@ fn response_completed_chunks(response_id: &str) -> Vec<StreamingSseChunk> {
async fn build_codex(server: &StreamingSseServer) -> Arc<CodexThread> {
test_codex()
.with_model("gpt-5.1")
.with_model("gpt-5.4")
.build_with_streaming_server(server)
.await
.unwrap_or_else(|err| panic!("build streaming Codex test session: {err}"))
@@ -264,7 +264,7 @@ async fn injected_user_input_triggers_follow_up_request_with_deltas() {
start_streaming_sse_server(vec![first_chunks, second_chunks]).await;
let codex = test_codex()
.with_model("gpt-5.1")
.with_model("gpt-5.4")
.build_with_streaming_server(&server)
.await
.unwrap()
@@ -530,7 +530,7 @@ async fn steered_user_input_waits_for_model_continuation_after_mid_turn_compact(
.await;
let codex = test_codex()
.with_model("gpt-5.1")
.with_model("gpt-5.4")
.with_config(|config| {
config.model_provider.name = "OpenAI (test)".to_string();
config.model_provider.supports_websockets = false;
@@ -617,7 +617,7 @@ async fn steered_user_input_follows_compact_when_only_the_steer_needs_follow_up(
.await;
let codex = test_codex()
.with_model("gpt-5.1")
.with_model("gpt-5.4")
.with_config(|config| {
config.model_provider.name = "OpenAI (test)".to_string();
config.model_provider.supports_websockets = false;
@@ -724,7 +724,7 @@ async fn steered_user_input_waits_when_tool_output_triggers_compact_before_next_
.await;
let test = test_codex()
.with_model("gpt-5.1")
.with_model("gpt-5.4")
.with_config(|config| {
config.model_provider.name = "OpenAI (test)".to_string();
config.model_provider.supports_websockets = false;