MarcBrun commited on
Commit
532c8ca
·
1 Parent(s): f6b6a52

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ qa3 = pipeline("question-answering", model="MarcBrun/ixambert-finetuned-squad-eu
13
  def answer_question(question, context, pipe):
14
 
15
  if pipe == "qa1":
16
- answer = qa(question=question, context=context)
17
  elif pipe == "qa2":
18
  answer = qa2(question=question, context=context)
19
  else:
 
13
  def answer_question(question, context, pipe):
14
 
15
  if pipe == "qa1":
16
+ answer = qa1(question=question, context=context)
17
  elif pipe == "qa2":
18
  answer = qa2(question=question, context=context)
19
  else: