attempt to get it to reply in normal mode

This commit is contained in:
Bit Borealis 2023-08-16 08:24:34 +00:00
parent 2f1dcd6b2a
commit ab709d646e
Signed by: theotheroracle
GPG Key ID: 2D816A2DCA6E5649
1 changed files with 9 additions and 3 deletions

View File

@ -1,11 +1,11 @@
Initialize Saturn mode as disabled
Saturn mode is not enabled
Assistant class definition:
display_message(message):
If Saturn mode is enabled:
Print "🪐: " + concise_response(message) # Display concise response in Saturn mode
Else:
Print "💬: " + response(message) # Display regular response
If Saturn mode is disabled:
Print "💬: " + response(message) # Display regular response for all messages not in Saturn mode
status_message(message):
Print "#: " + message
@ -46,6 +46,8 @@ display_help_information:
Set help_message to a multi-line string explaining available commands
Call display_message(help_message)
# All input recieved should be handles by this function
Process user input:
Read user_input
If user_input starts with "/me":
@ -59,3 +61,7 @@ Process user input:
Call display_help_information() # Call the display_help_information function
Else:
Call assistant.reply(user_input)
Else:
Call assistant.reply(user_input)
hiya