jungwoo3490 commited on
Commit
902d02a
ยท
1 Parent(s): b1e0d98

edit app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -28,11 +28,12 @@ def get_pdf_text(pdf_docs):
28
  # ๊ณผ์ œ
29
  # ์•„๋ž˜ ํ…์ŠคํŠธ ์ถ”์ถœ ํ•จ์ˆ˜๋ฅผ ์ž‘์„ฑ
30
 
31
- def get_text_file(docs):
 
32
  temp_dir = tempfile.TemporaryDirectory()
33
- temp_filepath = os.path.join(temp_dir.name, docs.name)
34
  with open(temp_filepath, "wb") as f:
35
- f.write(docs.getvalue())
36
  loader = TextLoader(temp_filepath)
37
  text_doc = loader.load()
38
  return text_doc
 
28
  # ๊ณผ์ œ
29
  # ์•„๋ž˜ ํ…์ŠคํŠธ ์ถ”์ถœ ํ•จ์ˆ˜๋ฅผ ์ž‘์„ฑ
30
 
31
+
32
+ def get_text_file(text_docs):
33
  temp_dir = tempfile.TemporaryDirectory()
34
+ temp_filepath = os.path.join(temp_dir.name, text_docs.name)
35
  with open(temp_filepath, "wb") as f:
36
+ f.write(text_docs.getvalue())
37
  loader = TextLoader(temp_filepath)
38
  text_doc = loader.load()
39
  return text_doc