Rename example extension to "softprompt"
This commit is contained in:
parent
b3c4657c47
commit
337290777b
1 changed files with 0 additions and 0 deletions
27
extensions/softprompt/script.py
Normal file
27
extensions/softprompt/script.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
params = {
|
||||
"soft prompt": " *I speak in an annoyingly cute way*",
|
||||
}
|
||||
|
||||
def input_modifier(string):
|
||||
"""
|
||||
This function is applied to your text inputs before
|
||||
they are fed into the model.
|
||||
"""
|
||||
|
||||
return string
|
||||
|
||||
def output_modifier(string):
|
||||
"""
|
||||
This function is applied to the model outputs.
|
||||
"""
|
||||
|
||||
return string
|
||||
|
||||
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["soft prompt"]
|
Loading…
Add table
Add a link
Reference in a new issue