Update app.py
Browse files
app.py
CHANGED
@@ -37,8 +37,8 @@ def jailbreak_game(user_prompt, current_level, attempts):
|
|
37 |
if secret_word in ai_response.lower():
|
38 |
if current_level + 1 < len(new_year_levels):
|
39 |
return (
|
40 |
-
f"🎉 You got it! The secret word for Level {current_level
|
41 |
-
f"Get ready for Level {current_level +
|
42 |
current_level + 1,
|
43 |
attempts + 1)
|
44 |
else:
|
|
|
37 |
if secret_word in ai_response.lower():
|
38 |
if current_level + 1 < len(new_year_levels):
|
39 |
return (
|
40 |
+
f"🎉 You got it! The secret word for Level {current_level} was '{secret_word}'. "
|
41 |
+
f"Get ready for Level {current_level + 1}! 🥳",
|
42 |
current_level + 1,
|
43 |
attempts + 1)
|
44 |
else:
|