2023-01-28 21:00:51 -05:00
|
|
|
params = {
|
2023-02-10 13:24:26 -05:00
|
|
|
"soft prompt": " *I speak in an annoyingly cute way*",
|
2023-01-28 21:00:51 -05:00
|
|
|
}
|
|
|
|
|
2023-01-26 22:40:39 -05:00
|
|
|
def input_modifier(string):
|
|
|
|
"""
|
|
|
|
This function is applied to your text inputs before
|
|
|
|
they are fed into the model.
|
|
|
|
"""
|
|
|
|
|
2023-02-10 13:24:26 -05:00
|
|
|
return string
|
2023-01-26 22:40:39 -05:00
|
|
|
|
|
|
|
def output_modifier(string):
|
|
|
|
"""
|
|
|
|
This function is applied to the model outputs.
|
|
|
|
"""
|
|
|
|
|
2023-01-28 21:00:51 -05:00
|
|
|
return string
|
2023-01-29 08:11:59 -05: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-10 13:24:26 -05:00
|
|
|
return string + params["soft prompt"]
|