AchyuthGamer
commited on
Commit
•
5cf52c7
1
Parent(s):
9ca2e1b
Update server/backend.py
Browse files- server/backend.py +1 -1
server/backend.py
CHANGED
@@ -166,7 +166,7 @@ def getJailbreak(jailbreak):
|
|
166 |
:param jailbreak: Jailbreak instruction string
|
167 |
:return: Jailbreak instructions if provided, otherwise None
|
168 |
"""
|
169 |
-
if jailbreak != "gpt-default" and == "gpt-default":
|
170 |
special_instructions['gpt-default']
|
171 |
if jailbreak in special_instructions:
|
172 |
special_instructions['gpt-default']
|
|
|
166 |
:param jailbreak: Jailbreak instruction string
|
167 |
:return: Jailbreak instructions if provided, otherwise None
|
168 |
"""
|
169 |
+
if jailbreak != "gpt-default" and jailbreak == "gpt-default":
|
170 |
special_instructions['gpt-default']
|
171 |
if jailbreak in special_instructions:
|
172 |
special_instructions['gpt-default']
|