From 007c90ed42d656654733d5ca1182c6d9f16b249d Mon Sep 17 00:00:00 2001 From: Topherhindman Date: Wed, 29 Apr 2026 19:14:31 -0700 Subject: [PATCH] Update AGENT_MODEL to use gpt-5.2 version --- src/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent.py b/src/agent.py index c61c334..c4fcfac 100644 --- a/src/agent.py +++ b/src/agent.py @@ -18,7 +18,7 @@ load_dotenv(".env.local") -AGENT_MODEL = "openai/gpt-5.3-chat-latest" +AGENT_MODEL = "openai/gpt-5.2-chat-latest" class Assistant(Agent):