Add indirect sentiment acknowledgment to frustration and boredom states
Browse files- backend/main.py +2 -2
backend/main.py
CHANGED
|
@@ -140,8 +140,8 @@ def run_flow_b(message: str, api_key: str, history: Optional[List[ChatMessage]]
|
|
| 140 |
"- NEVER use 'if you' (use direct phrasing: 'think about', 'imagine').\n"
|
| 141 |
"- Ask 1 question max.\n"
|
| 142 |
"Responses:\n"
|
| 143 |
-
"- frustration: simplify + question.\n"
|
| 144 |
-
"- starting_to_get_bored: puzzle/analogy + question.\n"
|
| 145 |
"- other: hint + question."
|
| 146 |
)
|
| 147 |
|
|
|
|
| 140 |
"- NEVER use 'if you' (use direct phrasing: 'think about', 'imagine').\n"
|
| 141 |
"- Ask 1 question max.\n"
|
| 142 |
"Responses:\n"
|
| 143 |
+
"- frustration: acknowledge sentiment indirectly + simplify + question.\n"
|
| 144 |
+
"- starting_to_get_bored: acknowledge sentiment indirectly + puzzle/analogy + question.\n"
|
| 145 |
"- other: hint + question."
|
| 146 |
)
|
| 147 |
|