From 3efe8a7b06163df3a1371e5a04bf129ddbd46c5d Mon Sep 17 00:00:00 2001 From: Kasper Date: Fri, 30 Jan 2026 20:34:16 +0100 Subject: [PATCH] chore: change emo loop frequency --- src/control_backend/core/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/control_backend/core/config.py b/src/control_backend/core/config.py index adb4c69..05935de 100644 --- a/src/control_backend/core/config.py +++ b/src/control_backend/core/config.py @@ -82,7 +82,7 @@ class BehaviourSettings(BaseModel): :ivar transcription_words_per_token: Estimated words per token for transcription timing. :ivar transcription_token_buffer: Buffer for transcription tokens. :ivar conversation_history_length_limit: The maximum amount of messages to extract beliefs from. - :ivar visual_emotion_recognition_window_duration_s: Duration in seconds over which to aggregate + :ivar visual_emotion_recognition_window_duration_s: Duration in seconds over which to aggregate emotions and update emotion beliefs. :ivar visual_emotion_recognition_min_frames_per_face: Minimum number of frames per face required to consider a face valid. @@ -112,7 +112,7 @@ class BehaviourSettings(BaseModel): conversation_history_length_limit: int = 10 # Visual Emotion Recognition settings - visual_emotion_recognition_window_duration_s: int = 5 + visual_emotion_recognition_window_duration_s: int = 3 visual_emotion_recognition_min_frames_per_face: int = 3 # AgentSpeak related settings trigger_time_to_wait: int = 2000