From 3beb4ab466a4bf3f4e6823166d484591591f902e Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 22 Jun 2026 09:50:29 +0000 Subject: [PATCH] Update default OpenAI model to gpt-5.4-mini --- src/llm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llm.rs b/src/llm.rs index 9958eae..1ab4679 100644 --- a/src/llm.rs +++ b/src/llm.rs @@ -29,7 +29,7 @@ use crate::forma::BenefitWithCategories; use crate::verbose::is_enabled as is_verbose; const OPENAI_BASE: &str = "https://api.openai.com/v1"; -const OPENAI_MODEL: &str = "gpt-4o"; +const OPENAI_MODEL: &str = "gpt-5.4-mini"; // Base-URL override for the LLM API. Production code never sets this; the // integration tests in `tests/llm_api.rs` use it to point