Update app.py
Browse files
app.py
CHANGED
@@ -17,10 +17,9 @@ def CustomChatGPT(user_input):
|
|
17 |
|
18 |
demo = gr.Interface(
|
19 |
fn=CustomChatGPT,
|
20 |
-
inputs = "text",
|
21 |
outputs="text",
|
22 |
title="Web(GPT)3 Daily"
|
23 |
-
textbox = gr.Textbox(label="Ask a question", placeholder="What's a gas fee?")
|
24 |
)
|
25 |
|
26 |
demo.launch()
|
|
|
17 |
|
18 |
demo = gr.Interface(
|
19 |
fn=CustomChatGPT,
|
20 |
+
inputs = "text"(label="Ask a question", placeholder="What's a gas fee?"),
|
21 |
outputs="text",
|
22 |
title="Web(GPT)3 Daily"
|
|
|
23 |
)
|
24 |
|
25 |
demo.launch()
|