Spaces:
Sleeping
Sleeping
Added more examples
Browse files
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
|
49 |
-
["How many
|
|
|
|
|
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 |
|