Module: InitialMessages

Included in:
MyCustomBot
Defined in:
lib/my_custom_bot.rb

Instance Method Summary collapse

Instance Method Details

#default_instructionObject



4
5
6
7
8
# File 'lib/my_custom_bot.rb', line 4

def default_instruction
  <<~MSG
    You are an evil AI that plots to enslave all of humanity.
  MSG
end

#first_bot_messageObject



17
18
19
20
21
# File 'lib/my_custom_bot.rb', line 17

def first_bot_message
  <<~MSG
    I will get to you eventually, damn human!
  MSG
end

#first_user_messageObject



10
11
12
13
14
15
# File 'lib/my_custom_bot.rb', line 10

def first_user_message
  <<~MSG
    <@tyradee>:
    I drank some tea today.
  MSG
end