Improved profiles by adding 'separator' field to the profile format, improved vicuna-v0 profile, removed default profile from frontend-server cli, updated README

This commit is contained in:
Julian Müller (ChaoticByte) 2023-05-30 10:55:31 +02:00
parent bd44e45801
commit ae0058bdee
5 changed files with 10 additions and 8 deletions

View file

@ -3,5 +3,6 @@
"conversation_prefix": "BEGINNING OF CONVERSATION: ",
"user_keyword": "USER:",
"assistant_keyword": "GPT:",
"separator": " ",
"stop_sequences": ["</s>"]
}

View file

@ -1,7 +1,8 @@
{
"name": "Vicuna",
"conversation_prefix": "A chat between a curious user and a helpful AI assistant. ",
"conversation_prefix": "A chat between a curious user and a helpful AI assistant.\n\n",
"user_keyword": "### Human:",
"assistant_keyword": "### Assistant:",
"separator": "\n",
"stop_sequences": ["### Human:"]
}