Spaces:
Paused
Paused
Commit
·
b411329
1
Parent(s):
01c2292
Update app.py
Browse files
app.py
CHANGED
@@ -42,10 +42,14 @@ def split(texts):
|
|
42 |
question = question[1:-1]
|
43 |
return context, question
|
44 |
|
|
|
|
|
|
|
|
|
45 |
def greet(texts):
|
46 |
context, question = split(texts)
|
47 |
-
answer = question_answer(context, question)
|
48 |
-
return
|
49 |
|
50 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
51 |
iface.launch()
|
|
|
42 |
question = question[1:-1]
|
43 |
return context, question
|
44 |
|
45 |
+
# def greet(texts):
|
46 |
+
# context, question = split(texts)
|
47 |
+
# answer = question_answer(context, question)
|
48 |
+
# return answer
|
49 |
def greet(texts):
|
50 |
context, question = split(texts)
|
51 |
+
# answer = question_answer(context, question)
|
52 |
+
return question
|
53 |
|
54 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
55 |
iface.launch()
|