Better recognize the 4chan model (for #19)

This commit is contained in:
oobabooga 2023-01-21 22:13:01 -03:00
parent aadf4e899a
commit 1e5e56fa2e

View File

@ -155,7 +155,7 @@ def formatted_outputs(reply, model_name):
if model_name.lower().startswith('galactica'):
reply = fix_galactica(reply)
return reply, reply, generate_basic_html(reply)
elif model_name.lower().startswith('gpt4chan'):
elif model_name.lower().startswith(('gpt4chan', 'gpt-4chan', '4chan')):
reply = fix_gpt4chan(reply)
return reply, 'Only applicable for GALACTICA models.', generate_4chan_html(reply)
else: