Web3Daily commited on
Commit
28ea98c
1 Parent(s): 724a5b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -17,9 +17,8 @@ def CustomChatGPT(Question):
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()
 
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="Answer:")
 
22
  )
23
 
24
  WebGPT3.launch()