Mary12 commited on
Commit
c306811
·
1 Parent(s): 1d61a83

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -71,13 +71,13 @@ pipe = model(model_name)
71
 
72
  def qa_result(context, question, file, pipe=pipe):
73
  if file is not None:
74
- if len(question) == 0:
75
- text = "Ես չեմ կարողանալ քեզ օգնել եթե ինձ չտաս հարցը"
76
- else:
77
- allowed_types = [".pdf", ".txt", ".docx"]
78
- extension = "." + file.name.split(".")[-1].lower()
79
- if not extension in allowed_types:
80
- text = "Խնդրում եմ ներբեռնել .pdf, .txt, կամ .docx ֆայլեր"
81
  else:
82
  if extension == allowed_types[0]:
83
  context = extract_text_from_pdf(file.name)
 
71
 
72
  def qa_result(context, question, file, pipe=pipe):
73
  if file is not None:
74
+ allowed_types = [".pdf", ".txt", ".docx"]
75
+ extension = "." + file.name.split(".")[-1].lower()
76
+ if not extension in allowed_types:
77
+ text = "Խնդրում եմ ներբեռնել .pdf, .txt, կամ .docx ֆայլեր"
78
+ else:
79
+ if len(question) == 0:
80
+ text = "Ես չեմ կարողանալ քեզ օգնել եթե ինձ չտաս հարցը"
81
  else:
82
  if extension == allowed_types[0]:
83
  context = extract_text_from_pdf(file.name)