mirror of
https://github.com/openai/codex.git
synced 2026-04-30 17:36:40 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user