Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ my_pipeline = pipeline('question-answering', model=mdl_name, tokenizer=mdl_name)
|
|
6 |
|
7 |
|
8 |
def answer_question(question,context):
|
9 |
-
text
|
10 |
di = ast.literal_eval(text)
|
11 |
response = my_pipeline(di)
|
12 |
return response
|
|
|
6 |
|
7 |
|
8 |
def answer_question(question,context):
|
9 |
+
text= "{"+"'question': '"+question+"','context': '"+context+"'}"
|
10 |
di = ast.literal_eval(text)
|
11 |
response = my_pipeline(di)
|
12 |
return response
|