kat33 commited on
Commit
c1e6490
1 Parent(s): 59be1de

Initial commit

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
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"])
6
+ gr.launch()