pgurazada1 commited on
Commit
cca8beb
1 Parent(s): 7d4ca62

Added more examples

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -45,8 +45,10 @@ interface = gr.Interface(
45
  inputs=textbox, fn=predict, outputs="text",
46
  title="Query BFSI customer information",
47
  description="This web API presents an interface to ask questions on customer information stored in a database.",
48
- examples=[["What is the average balance maintained by the users?", ""],
49
- ["How many users have subscribed to a term deposit?", ""]
 
 
50
  ]
51
  )
52
 
 
45
  inputs=textbox, fn=predict, outputs="text",
46
  title="Query BFSI customer information",
47
  description="This web API presents an interface to ask questions on customer information stored in a database.",
48
+ examples=[["What is the average balance maintained by our customers?", ""],
49
+ ["How many customers have subscribed to a term deposit?", ""],
50
+ ["How many customers have defaulted on loans?", ""],
51
+ ["Do customers who default maintain a low balance?", ""]
52
  ]
53
  )
54