Web3Daily commited on
Commit
7d1cf58
1 Parent(s): f2e1fa9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -18,9 +18,10 @@ def CustomChatGPT(user_input):
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 are gas fees?")
24
 
25
  demo.launch()
26
  iface.launch(inline=True)
 
18
  demo = gr.Interface(
19
  fn=CustomChatGPT,
20
  inputs= "text",
21
+ label="Ask a question",
22
+ placeholder="What are gas fees?"
23
  outputs = "text",
24
  title = "Web(GPT)3 Daily")
 
25
 
26
  demo.launch()
27
  iface.launch(inline=True)