Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,5 +2,5 @@ import gradio as gr
|
|
2 |
def question_answer(context, question):
|
3 |
pass # Implement your question-answering model here...
|
4 |
|
5 |
-
gr.Interface(fn=question_answer, inputs=["text", "text"], outputs=["textbox", "text"])
|
6 |
-
|
|
|
2 |
def question_answer(context, question):
|
3 |
pass # Implement your question-answering model here...
|
4 |
|
5 |
+
app=gr.Interface(fn=question_answer, inputs=["text", "text"], outputs=["textbox", "text"])
|
6 |
+
app.launch()
|