albhu commited on
Commit
9e518cd
·
verified ·
1 Parent(s): eec0661

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -24,12 +24,12 @@ model = AutoModelForCausalLM.from_pretrained(generator_name, trust_remote_code=T
24
  document_file = st.file_uploader("Húzd ide a dokumentumot vagy kattints a feltöltéshez", type=["pdf", "docx", "doc"])
25
 
26
  if document_file is not None:
27
- # Dokumentum méretének ellenőrzése
28
  if len(document_file.getvalue()) > 10000000: # 10 MB-nál nagyobb dokumentumok esetén
29
  st.error("A dokumentum mérete túl nagy. Kérlek válassz egy kisebb méretű dokumentumot!")
30
  else:
31
  if document_file.type == "application/pdf":
32
- # PDF fájl feldolgozása lapozás útján
33
  with pdfplumber.open(document_file) as pdf:
34
  document_text = ""
35
  for page in pdf.pages:
 
24
  document_file = st.file_uploader("Húzd ide a dokumentumot vagy kattints a feltöltéshez", type=["pdf", "docx", "doc"])
25
 
26
  if document_file is not None:
27
+ # Dokumentum méretének ellenőrzése és részletekben történő feldolgozása
28
  if len(document_file.getvalue()) > 10000000: # 10 MB-nál nagyobb dokumentumok esetén
29
  st.error("A dokumentum mérete túl nagy. Kérlek válassz egy kisebb méretű dokumentumot!")
30
  else:
31
  if document_file.type == "application/pdf":
32
+ # PDF fájl feldolgozása részletekben
33
  with pdfplumber.open(document_file) as pdf:
34
  document_text = ""
35
  for page in pdf.pages: