SUHES commited on
Commit
49871d5
·
verified ·
1 Parent(s): 0e2e0f1

Update model.py

Browse files
Files changed (1) hide show
  1. model.py +7 -0
model.py CHANGED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ def regulate_behavior(mood):
2
+ mapping = {
3
+ "tense_calm": "slow_movements",
4
+ "celebratory": "expressive_gestures",
5
+ "neutral": "standard_behavior"
6
+ }
7
+ return mapping.get(mood, "idle")