From 6d8cca43a8cb47509abcb1b739f3de8a4eacb18f Mon Sep 17 00:00:00 2001 From: Marco Dalalba Date: Sun, 30 Nov 2025 21:32:34 -0300 Subject: [PATCH] fix: add Azure GPT-5 family to stop words unsupported patterns (#11842) --- openhands/llm/model_features.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openhands/llm/model_features.py b/openhands/llm/model_features.py index a9857ffaca..f592f0bb98 100644 --- a/openhands/llm/model_features.py +++ b/openhands/llm/model_features.py @@ -132,6 +132,8 @@ SUPPORTS_STOP_WORDS_FALSE_PATTERNS: list[str] = [ 'grok-code-fast-1', # DeepSeek R1 family 'deepseek-r1-0528*', + # Azure GPT-5 family + 'azure/gpt-5*', ]