Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,5 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
-
gr.Interface
|
|
|
1 |
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"]).launch()
|