Web3Daily commited on
Commit
0b6eb19
1 Parent(s): 8ae0073

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ def CustomChatGPT(user_input):
18
  demo = gr.Interface(
19
  fn=CustomChatGPT,
20
  inputs=gr.inputs.Text(label="Ask a question"), # Add a label to the input component
21
- outputs=gr.outputs.Text(label="Get your answer"),
22
  title="Web(GPT)3 Daily"
23
  )
24
 
 
18
  demo = gr.Interface(
19
  fn=CustomChatGPT,
20
  inputs=gr.inputs.Text(label="Ask a question"), # Add a label to the input component
21
+ output=gr.output.Text(label="Get your answer"),
22
  title="Web(GPT)3 Daily"
23
  )
24