Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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()
|