Web3Daily commited on
Commit
f2e1fa9
1 Parent(s): 2f3318e

Update app.py

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