From a5326956505166de3baf36f5ed8c258f35144b14 Mon Sep 17 00:00:00 2001 From: philipph-askui Date: Wed, 19 Nov 2025 12:08:33 +0100 Subject: [PATCH] Change the default MessageSettings of the Android Agent to temperature=0. and thinking disabled --- src/askui/android_agent.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/askui/android_agent.py b/src/askui/android_agent.py index fff9d864..3dda8cd2 100644 --- a/src/askui/android_agent.py +++ b/src/askui/android_agent.py @@ -313,6 +313,7 @@ def _get_default_settings_for_act(self, model: str) -> ActSettings: return ActSettings( messages=MessageSettings( system=ANDROID_AGENT_SYSTEM_PROMPT, - thinking={"type": "enabled", "budget_tokens": 2048}, + thinking={"type": "disabled"}, + temperature=0.0, ), )