Spaces:
Sleeping
Sleeping
kms
commited on
Commit
ยท
0e2e238
1
Parent(s):
c08a856
update
Browse files
app.py
CHANGED
@@ -25,35 +25,38 @@ def get_pdf_text(pdf_docs):
|
|
25 |
pdf_doc = pdf_loader.load() # ํ
์คํธ๋ฅผ ์ถ์ถํฉ๋๋ค.
|
26 |
return pdf_doc # ์ถ์ถํ ํ
์คํธ๋ฅผ ๋ฐํํฉ๋๋ค.
|
27 |
|
|
|
28 |
# ํ
์คํธ ํ์ผ๋ก๋ถํฐ ํ
์คํธ ์ถ์ถ ํจ์๋ฅผ ์์ฑ
|
29 |
def get_text_file(text_docs):
|
30 |
-
temp_dir = tempfile.TemporaryDirectory()
|
31 |
-
temp_filepath = os.path.join(temp_dir.name, text_docs.name)
|
32 |
-
with open(temp_filepath, "wb") as f:
|
33 |
-
f.write(text_docs.getvalue())
|
34 |
-
text_loader = TextLoader(temp_filepath)
|
35 |
-
text_docs = text_loader.load()
|
36 |
-
return text_docs
|
37 |
|
38 |
# csv ํ์ผ๋ก๋ถํฐ ํ
์คํธ๋ฅผ ์ถ์ถํ๋ ํจ์์
๋๋ค.
|
39 |
def get_csv_file(csv_docs):
|
40 |
-
temp_dir = tempfile.TemporaryDirectory()
|
41 |
-
temp_filepath = os.path.join(temp_dir.name, csv_docs.name)
|
42 |
-
with open(temp_filepath, "wb") as f:
|
43 |
-
f.write(csv_docs.getvalue())
|
44 |
-
csv_loader = CSVLoader(temp_filepath)
|
45 |
-
csv_docs = csv_loader.load()
|
46 |
-
return csv_docs
|
47 |
|
48 |
# json ํ์ผ๋ก๋ถํฐ ํ
์คํธ๋ฅผ ์ถ์ถํ๋ ํจ์์
๋๋ค.
|
49 |
def get_json_file(json_docs):
|
50 |
-
temp_dir = tempfile.TemporaryDirectory()
|
51 |
-
temp_filepath = os.path.join(temp_dir.name, json_docs.name)
|
52 |
-
with open(temp_filepath, "wb") as f:
|
53 |
-
f.write(json_docs.getvalue())
|
54 |
-
json_loader = JSONLoader(filepath=temp_filepath,
|
55 |
-
|
56 |
-
|
|
|
|
|
57 |
|
58 |
|
59 |
# ๋ฌธ์๋ค์ ์ฒ๋ฆฌํ์ฌ ํ
์คํธ ์ฒญํฌ๋ก ๋๋๋ ํจ์์
๋๋ค.
|
|
|
25 |
pdf_doc = pdf_loader.load() # ํ
์คํธ๋ฅผ ์ถ์ถํฉ๋๋ค.
|
26 |
return pdf_doc # ์ถ์ถํ ํ
์คํธ๋ฅผ ๋ฐํํฉ๋๋ค.
|
27 |
|
28 |
+
# ๊ณผ์
|
29 |
# ํ
์คํธ ํ์ผ๋ก๋ถํฐ ํ
์คํธ ์ถ์ถ ํจ์๋ฅผ ์์ฑ
|
30 |
def get_text_file(text_docs):
|
31 |
+
temp_dir = tempfile.TemporaryDirectory() # ์์ ๋๋ ํ ๋ฆฌ๋ฅผ ์์ฑํฉ๋๋ค.
|
32 |
+
temp_filepath = os.path.join(temp_dir.name, text_docs.name) # ์์ ํ์ผ ๊ฒฝ๋ก๋ฅผ ์์ฑํฉ๋๋ค.
|
33 |
+
with open(temp_filepath, "wb") as f: # ์์ ํ์ผ์ ๋ฐ์ด๋๋ฆฌ ์ฐ๊ธฐ ๋ชจ๋๋ก ์ฝ๋๋ค.
|
34 |
+
f.write(text_docs.getvalue()) # txt ๋ฌธ์์ ๋ด์ฉ์ ์์ ํ์ผ์ ์๋๋ค.
|
35 |
+
text_loader = TextLoader(temp_filepath) # TextLoader๋ฅผ ์ฌ์ฉํด text๋ฅผ ๋ก๋ํฉ๋๋ค.
|
36 |
+
text_docs = text_loader.load() # ํ
์คํธ๋ฅผ ์ถ์ถํฉ๋๋ค.
|
37 |
+
return text_docs # ์ถ์ถํ ํ
์คํธ๋ฅผ ๋ฐํํฉ๋๋ค.
|
38 |
|
39 |
# csv ํ์ผ๋ก๋ถํฐ ํ
์คํธ๋ฅผ ์ถ์ถํ๋ ํจ์์
๋๋ค.
|
40 |
def get_csv_file(csv_docs):
|
41 |
+
temp_dir = tempfile.TemporaryDirectory() # ์์ ๋๋ ํ ๋ฆฌ๋ฅผ ์์ฑํฉ๋๋ค.
|
42 |
+
temp_filepath = os.path.join(temp_dir.name, csv_docs.name) # ์์ ํ์ผ ๊ฒฝ๋ก๋ฅผ ์์ฑํฉ๋๋ค.
|
43 |
+
with open(temp_filepath, "wb") as f: # ์์ ํ์ผ์ ๋ฐ์ด๋๋ฆฌ ์ฐ๊ธฐ ๋ชจ๋๋ก ์ฝ๋๋ค.
|
44 |
+
f.write(csv_docs.getvalue()) # csv ๋ฌธ์์ ๋ด์ฉ์ ์์ ํ์ผ์ ์๋๋ค.
|
45 |
+
csv_loader = CSVLoader(temp_filepath) # CSVLoader๋ฅผ ์ฌ์ฉํด csv๋ฅผ ๋ก๋ํฉ๋๋ค.
|
46 |
+
csv_docs = csv_loader.load() # ํ
์คํธ๋ฅผ ์ถ์ถํฉ๋๋ค.
|
47 |
+
return csv_docs # ์ถ์ถํ ํ
์คํธ๋ฅผ ๋ฐํํฉ๋๋ค.
|
48 |
|
49 |
# json ํ์ผ๋ก๋ถํฐ ํ
์คํธ๋ฅผ ์ถ์ถํ๋ ํจ์์
๋๋ค.
|
50 |
def get_json_file(json_docs):
|
51 |
+
temp_dir = tempfile.TemporaryDirectory() # ์์ ๋๋ ํ ๋ฆฌ๋ฅผ ์์ฑํฉ๋๋ค.
|
52 |
+
temp_filepath = os.path.join(temp_dir.name, json_docs.name) # ์์ ํ์ผ ๊ฒฝ๋ก๋ฅผ ์์ฑํฉ๋๋ค.
|
53 |
+
with open(temp_filepath, "wb") as f: # ์์ ํ์ผ์ ๋ฐ์ด๋๋ฆฌ ์ฐ๊ธฐ ๋ชจ๋๋ก ์ฝ๋๋ค.
|
54 |
+
f.write(json_docs.getvalue()) # json ๋ฌธ์์ ๋ด์ฉ์ ์์ ํ์ผ์ ์๋๋ค.
|
55 |
+
json_loader = JSONLoader(filepath=temp_filepath,
|
56 |
+
jq_schema='.messages[].content',
|
57 |
+
text_content=False) # JSONLoader๋ฅผ ์ฌ์ฉํ์ฌ json ํ์ผ์ content ๋ถ๋ถ์ ๋ก๋ํฉ๋๋ค.
|
58 |
+
json_docs = json_loader.load() # ํ
์คํธ๋ฅผ ์ถ์ถํฉ๋๋ค.
|
59 |
+
return json_docs # ์ถ์ถํ ํ
์คํธ๋ฅผ ๋ฐํํฉ๋๋ค.
|
60 |
|
61 |
|
62 |
# ๋ฌธ์๋ค์ ์ฒ๋ฆฌํ์ฌ ํ
์คํธ ์ฒญํฌ๋ก ๋๋๋ ํจ์์
๋๋ค.
|