Spaces:
Sleeping
Sleeping
Commit
ยท
902d02a
1
Parent(s):
b1e0d98
edit app.py
Browse files
app.py
CHANGED
@@ -28,11 +28,12 @@ def get_pdf_text(pdf_docs):
|
|
28 |
# ๊ณผ์
|
29 |
# ์๋ ํ
์คํธ ์ถ์ถ ํจ์๋ฅผ ์์ฑ
|
30 |
|
31 |
-
|
|
|
32 |
temp_dir = tempfile.TemporaryDirectory()
|
33 |
-
temp_filepath = os.path.join(temp_dir.name,
|
34 |
with open(temp_filepath, "wb") as f:
|
35 |
-
f.write(
|
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
|