keithhon commited on
Commit
34ba4ac
1 Parent(s): dab87b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -15,5 +15,6 @@ def infer(context, question, options=None):
15
  def greet(context, question):
16
  return infer(context, question)
17
 
 
18
  iface = gr.Interface(fn=greet, inputs=["text", "text"], outputs="text")
19
  iface.launch()
 
15
  def greet(context, question):
16
  return infer(context, question)
17
 
18
+ examples = [['','What is the color of a cloudy sky?']]
19
  iface = gr.Interface(fn=greet, inputs=["text", "text"], outputs="text")
20
  iface.launch()