feat(chat.txt): add chat prompt for Botator roleplay to enhance user interaction and entertainment value

🔀 chore(variousclasses.py): add Botator roleplay character option to the list of available characters for premium users
This commit is contained in:
2023-08-23 15:15:18 +02:00
parent f93e845520
commit 591b918c9f
2 changed files with 18 additions and 2 deletions

View File

@@ -4,9 +4,7 @@ from discord import AutocompleteContext
class models:
matchingDict = {
"chatGPT (default - free)": "gpt-3.5-turbo",
"davinci (premium)": "text-davinci-003",
"llama (premium)": "text-llama",
"llama 2 (premium)": "text-llama-2",
}
reverseMatchingDict = {v: k for k, v in matchingDict.items()}
default = list(matchingDict.keys())[0]
@@ -23,6 +21,7 @@ class characters:
matchingDict = {
"Botator (default - free)": "botator",
"Quantum (premium)": "quantum",
"Botator roleplay (premium)": "botator-roleplay",
}
reverseMatchingDict = {v: k for k, v in matchingDict.items()}
default = list(matchingDict.keys())[0]