2023-01-29 03:00:51 +01:00
|
|
|
params = {
|
|
|
|
"input suffix": " *I say as I make a funny face*",
|
2023-01-29 14:11:59 +01:00
|
|
|
"bot prefix": " *I speak in a cute way*",
|
2023-01-29 03:00:51 +01:00
|
|
|
}
|
|
|
|
|
2023-01-27 04:40:39 +01:00
|
|
|
def input_modifier(string):
|
|
|
|
"""
|
|
|
|
This function is applied to your text inputs before
|
|
|
|
they are fed into the model.
|
|
|
|
"""
|
|
|
|
|
2023-01-29 03:00:51 +01:00
|
|
|
return string + params["input suffix"]
|
2023-01-27 04:40:39 +01:00
|
|
|
|
|
|
|
def output_modifier(string):
|
|
|
|
"""
|
|
|
|
This function is applied to the model outputs.
|
|
|
|
"""
|
|
|
|
|
2023-01-29 03:00:51 +01:00
|
|
|
return string
|
2023-01-29 14:11:59 +01:00
|
|
|
|
|
|
|
def bot_prefix_modifier(string):
|
|
|
|
"""
|
|
|
|
This function is only applied in chat mode. It modifies
|
|
|
|
the prefix text for the Bot and can be used to bias its
|
|
|
|
behavior.
|
|
|
|
"""
|
|
|
|
|
|
|
|
return string + params["bot prefix"]
|