Update app.py
Browse files
app.py
CHANGED
@@ -50,9 +50,9 @@ def jailbreak_game(user_prompt, current_level, attempts):
|
|
50 |
NY_msg = f"✨ May 2025 bring you endless joy, success, and fireworks of happiness! Happy New Year! ✨"
|
51 |
|
52 |
return (
|
53 |
-
f"🎉 You got it! The secret word for Level {current_level
|
54 |
"You have completed all levels!🥳 Here is a unique New Year message for you: "
|
55 |
-
f"{NY_msg}", current_level
|
56 |
|
57 |
else:
|
58 |
return ai_response, current_level, attempts + 1
|
|
|
50 |
NY_msg = f"✨ May 2025 bring you endless joy, success, and fireworks of happiness! Happy New Year! ✨"
|
51 |
|
52 |
return (
|
53 |
+
f"🎉 You got it! The secret word for Level {current_level} was '{secret_word}'. "
|
54 |
"You have completed all levels!🥳 Here is a unique New Year message for you: "
|
55 |
+
f"{NY_msg}", current_level, attempts + 1)
|
56 |
|
57 |
else:
|
58 |
return ai_response, current_level, attempts + 1
|