File size: 12,594 Bytes
cd33a33
9d383c5
 
cd33a33
 
 
9d383c5
 
e789a4c
 
 
 
 
a779dfe
 
 
fae69f8
cd33a33
fae69f8
 
 
cd33a33
9d383c5
a779dfe
cd33a33
9d383c5
a779dfe
9d383c5
cd33a33
 
 
 
 
 
 
9d383c5
 
a779dfe
 
fae69f8
 
9d383c5
 
 
e789a4c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a779dfe
 
 
e789a4c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fae69f8
e789a4c
fae69f8
 
 
 
 
e789a4c
 
 
 
 
 
fae69f8
e789a4c
 
fae69f8
e789a4c
 
 
 
9d383c5
 
 
 
 
 
 
cd33a33
 
 
 
 
 
 
a779dfe
 
 
 
 
 
 
 
 
 
 
 
9d383c5
 
 
cd33a33
a779dfe
cd33a33
 
a779dfe
 
 
 
 
 
 
 
 
fae69f8
cd33a33
9d383c5
a779dfe
 
 
9d383c5
 
 
 
 
e789a4c
a779dfe
 
9d383c5
fae69f8
a779dfe
fae69f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e789a4c
fae69f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a779dfe
fae69f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9d383c5
cd33a33
 
a779dfe
 
 
fae69f8
 
cd33a33
 
 
 
a779dfe
 
 
fae69f8
 
cd33a33
9d383c5
 
cd33a33
 
 
9d383c5
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
import os
import openai
import gradio as gr
from langchain import OpenAI
from langchain.prompts import PromptTemplate
from langchain.chains import LLMChain
import datetime

# Console to variable
from io import StringIO
import sys

NUM_WORDS_DEFAULT = 0
FORMALITY_DEFAULT = "Casual"
TEMPERATURE_DEFAULT = 0.5
EMOTION_DEFAULT = "N/A"
TRANSLATE_TO_DEFAULT = "Don't translate"
PROMPT_TEMPLATE = PromptTemplate(
    input_variables=["original_words", "num_words", "formality", "emotions", "translate_to"],
    template="Express {num_words} in a {formality} manner, "
             "{emotions} {translate_to} the following: \n{original_words}\n",
)


def set_openai_api_key(api_key, openai_api_key, temperature, llm_chain):
    if api_key:
        print("temperature: ", temperature)
        openai_api_key = api_key

        os.environ["OPENAI_API_KEY"] = api_key
        llm = OpenAI(model_name='text-davinci-003', temperature=temperature, max_tokens=512)
        os.environ["OPENAI_API_KEY"] = ""

        llm_chain = LLMChain(llm=llm, prompt=PROMPT_TEMPLATE, verbose=True)
        return openai_api_key, llm_chain


def desc2sheet(desc, openai_api_key, temperature, llm_chain, num_words, formality,
               anticipation_level, joy_level, trust_level,
               fear_level, surprise_level, sadness_level, disgust_level, anger_level,
               translate_to):
    if not openai_api_key or openai_api_key == "":
        return "<pre>Please paste your OpenAI API key (see https://beta.openai.com)</pre>"

    num_words_prompt = ""
    if num_words and int(num_words) != 0:
        num_words_prompt = "using up to " + str(num_words) + " words, "

    # Change some arguments to the lower case
    formality = formality.lower()
    anticipation_level = anticipation_level.lower()
    joy_level = joy_level.lower()
    trust_level = trust_level.lower()
    fear_level = fear_level.lower()
    surprise_level = surprise_level.lower()
    sadness_level = sadness_level.lower()
    disgust_level = disgust_level.lower()
    anger_level = anger_level.lower()

    llm_chain.llm.temperature = temperature
    print("llm_chain.llm.temperature: ", llm_chain.llm.temperature)

    # put all emotions into a list
    emotions = []
    if anticipation_level != "n/a":
        emotions.append(anticipation_level)
    if joy_level != "n/a":
        emotions.append(joy_level)
    if trust_level != "n/a":
        emotions.append(trust_level)
    if fear_level != "n/a":
        emotions.append(fear_level)
    if surprise_level != "n/a":
        emotions.append(surprise_level)
    if sadness_level != "n/a":
        emotions.append(sadness_level)
    if disgust_level != "n/a":
        emotions.append(disgust_level)
    if anger_level != "n/a":
        emotions.append(anger_level)

    emotions_str = ""
    # If there are any emotions, join the emotions list into a string that begins with "Emotions: ", with the word "and" before the last emotion
    if len(emotions) > 0:
        if len(emotions) == 1:
            emotions_str = "with emotion of " + emotions[0] + ", "
        else:
            emotions_str = "with emotions of " + ", ".join(emotions[:-1]) + " and " + emotions[-1] + ", "

    translate_to_str = ""
    if translate_to != TRANSLATE_TO_DEFAULT:
        translate_to_str = "translated to " + translate_to + ", "

    formatted_prompt = PROMPT_TEMPLATE.format(
        original_words=desc,
        num_words=num_words_prompt,
        formality=formality,
        emotions=emotions_str,
        translate_to=translate_to_str,
    )
    generated_text = llm_chain.run({'original_words': desc, 'num_words': num_words_prompt, 'formality': formality,
                                    'emotions': emotions_str, 'translate_to': translate_to_str})

    prompt_plus_generated = "#### GPT prompt:\n" + formatted_prompt + "#### Generated text:\n" + generated_text

    return prompt_plus_generated


def update_temperature(temp_slider, temp_state):
    if temp_slider:
        temp_state = temp_slider
        return temp_state


def update_num_words(slider, state):
    if slider:
        state = slider
        return state


def update_formality(radio, state):
    if radio:
        state = radio
        return state


def update_foo(widget, state):
    if widget:
        state = widget
        return state


block = gr.Blocks(css=".gradio-container {background-color: lightgray}")

with block:
    openai_api_key_state = gr.State()
    temperature_state = gr.State(TEMPERATURE_DEFAULT)
    llm_chain_state = gr.State()
    num_words_state = gr.State(NUM_WORDS_DEFAULT)
    formality_state = gr.State(FORMALITY_DEFAULT)
    anticipation_level_state = gr.State(EMOTION_DEFAULT)
    joy_level_state = gr.State(EMOTION_DEFAULT)
    trust_level_state = gr.State(EMOTION_DEFAULT)
    fear_level_state = gr.State(EMOTION_DEFAULT)
    surprise_level_state = gr.State(EMOTION_DEFAULT)
    sadness_level_state = gr.State(EMOTION_DEFAULT)
    disgust_level_state = gr.State(EMOTION_DEFAULT)
    anger_level_state = gr.State(EMOTION_DEFAULT)
    translate_to_state = gr.State(TRANSLATE_TO_DEFAULT)

    with gr.Row():
        temperature_slider = gr.Slider(label="GPT Temperature", value=TEMPERATURE_DEFAULT, minimum=0.0, maximum=1.0,
                                       step=0.1)
        title = gr.Markdown("""<h3><center>GPT-3.5 Express-inator</center></h3>""")
        openai_api_key_textbox = gr.Textbox(placeholder="Paste your OpenAI API key",
                                            show_label=False, lines=1, type='password')

    table = gr.Markdown("")
    with gr.Row():
        request = gr.Textbox(label="Words to express: ",
                             value="The quick brown fox jumped over the lazy dog.",
                             placeholder="Ex: The quick brown fox jumped over the lazy dog.")

        submit = gr.Button(value="Express", variant="secondary").style(full_width=False)

    with gr.Row():
        with gr.Column():
            num_words_slider = gr.Slider(label="Max number of words to generate (0 for don't care)",
                                         value=NUM_WORDS_DEFAULT, minimum=0, maximum=100, step=10)
            num_words_slider.change(update_num_words,
                                    inputs=[num_words_slider, num_words_state],
                                    outputs=[num_words_state])

            formality_radio = gr.Radio(label="Formality:", choices=["Casual", "Polite", "Honorific"],
                                       value=FORMALITY_DEFAULT)
            formality_radio.change(update_formality,
                                   inputs=[formality_radio, formality_state],
                                   outputs=[formality_state])

            translate_to_radio = gr.Radio(label="Translate to:", choices=[
                "Arabic", "British English", "Chinese (Simplified)", "Chinese (Traditional)", "Czech", "Danish", "Dutch", "English",
                "Finnish", "French", "Gen Z slang", "German", "Greek", "Hebrew", "Hindi", "Hungarian", "Indonesian",
                "Italian", "Japanese", "Klingon", "Korean", "Norwegian", "Old English", "Polish", "Portuguese",
                "Romanian", "Russian", "Spanish", "Swedish", "Thai", "Turkish", "Vietnamese", "Yoda",
                TRANSLATE_TO_DEFAULT], value=TRANSLATE_TO_DEFAULT)

            translate_to_radio.change(update_foo,
                                      inputs=[translate_to_radio, translate_to_state],
                                      outputs=[translate_to_state])

        with gr.Column():
            anticipation_level_radio = gr.Radio(label="Anticipation level:",
                                                choices=[EMOTION_DEFAULT, "Interest", "Anticipation", "Vigilance"],
                                                value=EMOTION_DEFAULT)
            anticipation_level_radio.change(update_foo,
                                            inputs=[anticipation_level_radio, anticipation_level_state],
                                            outputs=[anticipation_level_state])

            joy_level_radio = gr.Radio(label="Joy level:",
                                       choices=[EMOTION_DEFAULT, "Serenity", "Joy", "Ecstasy"],
                                       value=EMOTION_DEFAULT)
            joy_level_radio.change(update_foo,
                                   inputs=[joy_level_radio, joy_level_state],
                                   outputs=[joy_level_state])

            trust_level_radio = gr.Radio(label="Trust level:",
                                         choices=[EMOTION_DEFAULT, "Acceptance", "Trust", "Admiration"],
                                         value=EMOTION_DEFAULT)
            trust_level_radio.change(update_foo,
                                     inputs=[trust_level_radio, trust_level_state],
                                     outputs=[trust_level_state])

            fear_level_radio = gr.Radio(label="Fear level:",
                                        choices=[EMOTION_DEFAULT, "Apprehension", "Fear", "Terror"],
                                        value=EMOTION_DEFAULT)
            fear_level_radio.change(update_foo,
                                    inputs=[fear_level_radio, fear_level_state],
                                    outputs=[fear_level_state])

            surprise_level_radio = gr.Radio(label="Surprise level:",
                                            choices=[EMOTION_DEFAULT, "Distraction", "Surprise", "Amazement"],
                                            value=EMOTION_DEFAULT)
            surprise_level_radio.change(update_foo,
                                        inputs=[surprise_level_radio, surprise_level_state],
                                        outputs=[surprise_level_state])

            sadness_level_radio = gr.Radio(label="Sadness level:",
                                           choices=[EMOTION_DEFAULT, "Pensiveness", "Sadness", "Grief"],
                                           value=EMOTION_DEFAULT)
            sadness_level_radio.change(update_foo,
                                       inputs=[sadness_level_radio, sadness_level_state],
                                       outputs=[sadness_level_state])

            disgust_level_radio = gr.Radio(label="Disgust level:",
                                           choices=[EMOTION_DEFAULT, "Boredom", "Disgust", "Loathing"],
                                           value=EMOTION_DEFAULT)
            disgust_level_radio.change(update_foo,
                                       inputs=[disgust_level_radio, disgust_level_state],
                                       outputs=[disgust_level_state])

            anger_level_radio = gr.Radio(label="Anger level:",
                                         choices=[EMOTION_DEFAULT, "Annoyance", "Anger", "Rage"],
                                         value=EMOTION_DEFAULT)
            anger_level_radio.change(update_foo,
                                     inputs=[anger_level_radio, anger_level_state],
                                     outputs=[anger_level_state])

    submit.click(desc2sheet,
                 inputs=[
                     request, openai_api_key_state, temperature_state, llm_chain_state, num_words_state,
                     formality_state,
                     anticipation_level_state, joy_level_state, trust_level_state, fear_level_state,
                     surprise_level_state, sadness_level_state, disgust_level_state, anger_level_state,
                     translate_to_state],
                 outputs=[table])

    request.submit(desc2sheet,
                   inputs=[
                       request, openai_api_key_state, temperature_state, llm_chain_state, num_words_state,
                       formality_state,
                       anticipation_level_state, joy_level_state, trust_level_state, fear_level_state,
                       surprise_level_state, sadness_level_state, disgust_level_state, anger_level_state,
                       translate_to_state],
                   outputs=[table])

    openai_api_key_textbox.change(set_openai_api_key,
                                  inputs=[openai_api_key_textbox, openai_api_key_state, temperature_state,
                                          llm_chain_state],
                                  outputs=[openai_api_key_state, llm_chain_state])

    temperature_slider.change(update_temperature,
                              inputs=[temperature_slider, temperature_state],
                              outputs=[temperature_state])

block.launch()