2024-08-11 19:27:30 +12:00
# DO NOT CHANGE
version : 5
2024-06-26 00:56:13 +12:00
# Hangman related settings (.hangman command)
hangman :
# The amount of currency awarded to the winner of a hangman game
currencyReward : 0
# Trivia related settings (.t command)
trivia :
# The amount of currency awarded to the winner of the trivia game.
currencyReward : 0
# Users won't be able to start trivia games which have
# a smaller win requirement than the one specified by this setting.
minimumWinReq : 1
# List of responses for the .8ball command. A random one will be selected every time
eightBallResponses :
- Most definitely yes.
- For sure.
- Totally!
- Of course!
- As I see it, yes.
- My sources say yes.
- Yes .
- Most likely.
- Perhaps...
- Maybe...
- Hm, not sure.
- It is uncertain.
- Ask me again later.
- Don't count on it.
- Probably not.
- Very doubtful.
- Most likely no.
- Nope.
- No .
- My sources say no.
- Don't even think about it.
- Definitely no.
- NO - It may cause disease contraction!
# List of animals which will be used for the animal race game (.race)
raceAnimals :
- icon : "🐼"
name : Panda
- icon : "🐻"
name : Bear
- icon : "🐧"
name : Pengu
- icon : "🐨"
name : Koala
- icon : "🐬"
name : Dolphin
- icon : "🐞"
name : Ladybird
- icon : "🦀"
name : Crab
- icon : "🦄"
name : Unicorn
# Which chatbot API should bot use.
# 'cleverbot' - bot will use Cleverbot API.
2024-08-11 19:27:30 +12:00
# 'openai' - bot will use OpenAi API
2024-07-19 15:31:09 +12:00
chatBot : OpenAi
2024-06-26 00:56:13 +12:00
chatGpt :
2024-07-19 15:31:09 +12:00
# Url to any openai api compatible url.
# Make sure to modify the modelName appropriately
# DO NOT add /v1/chat/completions suffix to the url
apiUrl : https://api.openai.com
2024-06-26 00:56:13 +12:00
# Which GPT Model should bot use.
2024-07-19 15:31:09 +12:00
# gpt-3.5-turbo - cheapest
# gpt-4o - more expensive, higher quality
2024-06-26 00:56:13 +12:00
#
2024-07-19 15:31:09 +12:00
# If you are using another openai compatible api, you may use any of the models supported by that api
modelName : gpt-3.5-turbo
# How should the chatbot behave, what's its personality?
# This will be sent as a system message.
# Usage of this counts towards the max tokens.
2024-06-26 00:56:13 +12:00
personalityPrompt : You are a chat bot willing to have a conversation with anyone about anything.
2024-07-19 15:31:09 +12:00
# The maximum number of messages in a conversation that can be remembered.
# This will increase the number of tokens used.
2024-06-26 00:56:13 +12:00
chatHistory : 5
2024-07-19 15:31:09 +12:00
# The maximum number of tokens to use per OpenAi API call
2024-06-26 00:56:13 +12:00
maxTokens : 100
# The minimum number of tokens to use per GPT API call, such that chat history is removed to make room.
minTokens : 30