Spaces:
Runtime error
Runtime error
Commit
•
e33a3c8
1
Parent(s):
b6dfb83
Fix: indentation error (#3)
Browse files- Fix: indentation error (a0e6f13b246f4758f4320f0a7a1e50ce8e307c8d)
Co-authored-by: Anand <pvanand@users.noreply.huggingface.co>
- actions/actions.py +3 -3
actions/actions.py
CHANGED
@@ -77,7 +77,7 @@ class ActionJoinClassify(Action):
|
|
77 |
last_intent = tracker.slots.get("local_chapter", None)
|
78 |
|
79 |
# Check if the last intent was 'local_chapter'
|
80 |
-
|
81 |
dispatcher.utter_message(template="utter_join_chapter")
|
82 |
else:
|
83 |
dispatcher.utter_message(template=utter_apology_Q_prompt)
|
@@ -97,7 +97,7 @@ class ActionEligibilityClassify(Action):
|
|
97 |
last_intent = tracker.slots.get("local_chapter", None)
|
98 |
|
99 |
# Check if the last intent was 'local_chapter'
|
100 |
-
|
101 |
dispatcher.utter_message(template="utter_local_chapter_participation_eligibility")
|
102 |
else:
|
103 |
dispatcher.utter_message(template=utter_apology_Q_prompt)
|
@@ -117,7 +117,7 @@ class ActionCostClassify(Action):
|
|
117 |
last_intent = tracker.slots.get("local_chapter", None)
|
118 |
|
119 |
# Check if the last intent was 'local_chapter'
|
120 |
-
|
121 |
dispatcher.utter_message(template="utter_local_chapter_cost")
|
122 |
else:
|
123 |
dispatcher.utter_message(template=utter_apology_Q_prompt)
|
|
|
77 |
last_intent = tracker.slots.get("local_chapter", None)
|
78 |
|
79 |
# Check if the last intent was 'local_chapter'
|
80 |
+
if last_intent and last_intent.lower() in ['local chapter', 'local chapters']:
|
81 |
dispatcher.utter_message(template="utter_join_chapter")
|
82 |
else:
|
83 |
dispatcher.utter_message(template=utter_apology_Q_prompt)
|
|
|
97 |
last_intent = tracker.slots.get("local_chapter", None)
|
98 |
|
99 |
# Check if the last intent was 'local_chapter'
|
100 |
+
if last_intent and last_intent.lower() in ['local chapter', 'local chapters']:
|
101 |
dispatcher.utter_message(template="utter_local_chapter_participation_eligibility")
|
102 |
else:
|
103 |
dispatcher.utter_message(template=utter_apology_Q_prompt)
|
|
|
117 |
last_intent = tracker.slots.get("local_chapter", None)
|
118 |
|
119 |
# Check if the last intent was 'local_chapter'
|
120 |
+
if last_intent and last_intent.lower() in ['local chapter', 'local chapters']:
|
121 |
dispatcher.utter_message(template="utter_local_chapter_cost")
|
122 |
else:
|
123 |
dispatcher.utter_message(template=utter_apology_Q_prompt)
|