Update app.py
Browse files
app.py
CHANGED
|
@@ -17,6 +17,8 @@ def CustomChatGPT(user_input):
|
|
| 17 |
|
| 18 |
demo = gr.Interface(
|
| 19 |
fn=CustomChatGPT,
|
|
|
|
|
|
|
| 20 |
title="Web(GPT)3"
|
| 21 |
)
|
| 22 |
|
|
|
|
| 17 |
|
| 18 |
demo = gr.Interface(
|
| 19 |
fn=CustomChatGPT,
|
| 20 |
+
inputs(placeholder="Ask a question") = "text",
|
| 21 |
+
outputs="text",
|
| 22 |
title="Web(GPT)3"
|
| 23 |
)
|
| 24 |
|