Update app.py
Browse files
app.py
CHANGED
@@ -17,10 +17,9 @@ def CustomChatGPT(Question):
|
|
17 |
|
18 |
WebGPT3 = gr.Interface(
|
19 |
fn=CustomChatGPT,
|
20 |
-
inputs=gr.Textbox(label="
|
21 |
outputs=gr.Textbox(label="Get a simple answer in return:"),
|
22 |
-
theme="light"
|
23 |
-
title="Web(GPT)3"
|
24 |
)
|
25 |
|
26 |
WebGPT3.launch()
|
|
|
17 |
|
18 |
WebGPT3 = gr.Interface(
|
19 |
fn=CustomChatGPT,
|
20 |
+
inputs=gr.Textbox(label="Ask a question):", placeholder="E.g. What are gas fees?"),
|
21 |
outputs=gr.Textbox(label="Get a simple answer in return:"),
|
22 |
+
theme="light"
|
|
|
23 |
)
|
24 |
|
25 |
WebGPT3.launch()
|