Merge pull request #259 from hieultp/patch-1

Fix typo error in LLaMa prompts
This commit is contained in:
oobabooga 2023-03-12 08:52:02 -03:00 committed by GitHub
commit 35c14f31b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ def get_prompt_by_name(name):
return df[df['Prompt name'] == name].iloc[0]['Prompt'].replace('\\n', '\n')
def ui():
if not shared.args.chat or share.args.cai_chat:
if not shared.args.chat or shared.args.cai_chat:
choices = ['None'] + list(df['Prompt name'])
prompts_menu = gr.Dropdown(value=choices[0], choices=choices, label='Prompt')