Update conversation_logic.py
Browse files- conversation_logic.py +2 -1
conversation_logic.py
CHANGED
|
@@ -178,7 +178,8 @@ def _compose_reply(
|
|
| 178 |
return "\n".join(f"- {s}" for s in shown_steps)
|
| 179 |
|
| 180 |
if steps:
|
| 181 |
-
|
|
|
|
| 182 |
|
| 183 |
if normalize_category(category) == "Verbal":
|
| 184 |
return "I can help analyse the wording or logic, but I need the full question text to guide you properly."
|
|
|
|
| 178 |
return "\n".join(f"- {s}" for s in shown_steps)
|
| 179 |
|
| 180 |
if steps:
|
| 181 |
+
shown_steps = steps[:2] if verbosity >= 0.4 else steps[:1]
|
| 182 |
+
return "\n".join(f"- {s}" for s in shown_steps)
|
| 183 |
|
| 184 |
if normalize_category(category) == "Verbal":
|
| 185 |
return "I can help analyse the wording or logic, but I need the full question text to guide you properly."
|