Update app.py
Browse files
app.py
CHANGED
@@ -14,19 +14,12 @@ def CustomChatGPT(Question):
|
|
14 |
ChatGPT_reply = response["choices"][0]["message"]["content"]
|
15 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
16 |
return ChatGPT_reply
|
17 |
-
|
18 |
-
def set_theme(dark_theme):
|
19 |
-
if dark_theme:
|
20 |
-
return dark_theme_css
|
21 |
-
else:
|
22 |
-
return light_theme_css
|
23 |
|
24 |
demo = gr.Interface(
|
25 |
fn=CustomChatGPT,
|
26 |
-
inputs=gr.Textbox(label="Insert jargon here (ask a question):", placeholder="E.g. What are gas fees?"),
|
27 |
outputs=gr.Textbox(label="Get a simple answer in return:"),
|
28 |
-
title="Web(GPT)3"
|
29 |
-
css=set_theme
|
30 |
)
|
31 |
|
32 |
demo.launch()
|
|
|
14 |
ChatGPT_reply = response["choices"][0]["message"]["content"]
|
15 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
16 |
return ChatGPT_reply
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
demo = gr.Interface(
|
19 |
fn=CustomChatGPT,
|
20 |
+
inputs=gr.Textbox(label="Insert jargon here (ask a question):", placeholder="E.g. What are gas fees?"),
|
21 |
outputs=gr.Textbox(label="Get a simple answer in return:"),
|
22 |
+
title="Web(GPT)3"
|
|
|
23 |
)
|
24 |
|
25 |
demo.launch()
|