2023-01-28 23:00:51 -03:00
|
|
|
params = {
|
2023-02-13 15:25:16 -03:00
|
|
|
"bias string": " *I speak in an annoyingly cute way*",
|
2023-01-28 23:00:51 -03:00
|
|
|
}
|
|
|
|
|
2023-01-27 00:40:39 -03:00
|
|
|
def input_modifier(string):
|
|
|
|
"""
|
|
|
|
This function is applied to your text inputs before
|
|
|
|
they are fed into the model.
|
|
|
|
"""
|
|
|
|
|
2023-02-10 15:24:26 -03:00
|
|
|
return string
|
2023-01-27 00:40:39 -03:00
|
|
|
|
|
|
|
def output_modifier(string):
|
|
|
|
"""
|
|
|
|
This function is applied to the model outputs.
|
|
|
|
"""
|
|
|
|
|
2023-01-28 23:00:51 -03:00
|
|
|
return string
|
2023-01-29 10:11:59 -03: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.
|
|
|
|
"""
|
|
|
|
|
2023-02-15 23:38:52 -03:00
|
|
|
return f'{string} {params["bias string"].strip()} '
|