Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,5 +16,5 @@ 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()
|
|
|
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", examples=examples)
|
20 |
iface.launch()
|