mirror of
https://github.com/Paillat-dev/Botator.git
synced 2026-01-02 09:16:19 +00:00
✨ 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:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user