DDingcheol commited on
Commit
cba75c5
·
1 Parent(s): d272441

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ def get_text_file(txt_docs):
32
  temp_dir = tempfile.TemporaryDirectory()
33
  temp_filepath = os.path.join(temp_dir.name, txt_docs.name)
34
  with open(temp_filepath, "wb") as f:
35
- f.write(pdf_docs.getvalue())
36
  txt_loader = TextLoader(temp_filepath)
37
  txt_doc = tex_loader.load()
38
  return tex_doc
 
32
  temp_dir = tempfile.TemporaryDirectory()
33
  temp_filepath = os.path.join(temp_dir.name, txt_docs.name)
34
  with open(temp_filepath, "wb") as f:
35
+ f.write(txt_docs.getvalue())
36
  txt_loader = TextLoader(temp_filepath)
37
  txt_doc = tex_loader.load()
38
  return tex_doc