2023-02-24 23:00:11 +01:00
|
|
|
import gradio as gr
|
|
|
|
|
2023-01-29 03:00:51 +01:00
|
|
|
params = {
|
2023-02-26 06:37:21 +01:00
|
|
|
"activate": True,
|
|
|
|
"bias string": " *I am so happy*",
|
2023-01-29 03:00:51 +01:00
|
|
|
}
|
|
|
|
|
2023-04-07 05:15:45 +02: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-04-07 05:15:45 +02:00
|
|
|
"""
|
2023-01-27 04:40:39 +01:00
|
|
|
|
2023-02-10 19:24:26 +01:00
|
|
|
return string
|
2023-01-27 04:40:39 +01:00
|
|
|
|
2023-04-07 05:15:45 +02:00
|
|
|
|
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
|
|
|
|
2023-04-07 05:15:45 +02:00
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
|
2023-04-07 05:15:45 +02:00
|
|
|
if params['activate']:
|
2023-02-26 06:37:21 +01:00
|
|
|
return f'{string} {params["bias string"].strip()} '
|
|
|
|
else:
|
|
|
|
return string
|
2023-02-24 23:00:11 +01:00
|
|
|
|
2023-04-07 05:15:45 +02:00
|
|
|
|
2023-02-24 23:00:11 +01:00
|
|
|
def ui():
|
|
|
|
# Gradio elements
|
2023-02-26 06:37:21 +01:00
|
|
|
activate = gr.Checkbox(value=params['activate'], label='Activate character bias')
|
2023-02-24 23:00:11 +01:00
|
|
|
string = gr.Textbox(value=params["bias string"], label='Character bias')
|
|
|
|
|
|
|
|
# Event functions to update the parameters in the backend
|
|
|
|
string.change(lambda x: params.update({"bias string": x}), string, None)
|
2023-02-26 06:37:21 +01:00
|
|
|
activate.change(lambda x: params.update({"activate": x}), activate, None)
|