From 2addd4eb0d87c4d8e05967028940bde2e697e639 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 17 Nov 2025 10:36:46 -0800 Subject: [PATCH] Fix llm_model_configs committed to wrong directory (#6206) * Initial plan * Move llm_model_configs to correct location Co-authored-by: kianjones9 <11655409+kianjones9@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kianjones9 <11655409+kianjones9@users.noreply.github.com> --- tests/configs/llm_model_configs/openai-gpt-4.1.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/configs/llm_model_configs/openai-gpt-4.1.json b/tests/configs/llm_model_configs/openai-gpt-4.1.json index 0d073ae1..7bab3439 100644 --- a/tests/configs/llm_model_configs/openai-gpt-4.1.json +++ b/tests/configs/llm_model_configs/openai-gpt-4.1.json @@ -1,7 +1,13 @@ { - "context_window": 1047576, - "model": "gpt-4.1-2025-04-14", + "model": "gpt-4.1", "model_endpoint_type": "openai", "model_endpoint": "https://api.openai.com/v1", - "model_wrapper": null + "model_wrapper": null, + "context_window": 256000, + "put_inner_thoughts_in_kwargs": true, + "handle": "openai/gpt-4.1", + "temperature": 0.7, + "max_tokens": 8192, + "enable_reasoner": false, + "max_reasoning_tokens": 0 }