Web3Daily commited on
Commit
ad4769a
1 Parent(s): 0a5457b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,9 +17,9 @@ def CustomChatGPT(Question):
17
 
18
  demo = gr.Interface(
19
  fn=CustomChatGPT,
20
- inputs="text",
21
  outputs=gr.Textbox(label="Answer"),
22
- textbox = gr.Textbox(placeholder="What are gas fees?")
23
  title="Web(GPT)3"
24
  )
25
 
 
17
 
18
  demo = gr.Interface(
19
  fn=CustomChatGPT,
20
+ inputs=gr.Textbox(label="Question?", placeholder="What are gas fees?"),
21
  outputs=gr.Textbox(label="Answer"),
22
+
23
  title="Web(GPT)3"
24
  )
25