[email protected]
commited on
Commit
Β·
7993f2c
1
Parent(s):
14b71a9
edit codes
Browse files
app.py
CHANGED
@@ -30,18 +30,40 @@ def get_pdf_text(pdf_docs):
|
|
30 |
# κ³Όμ
|
31 |
# μλ ν
μ€νΈ μΆμΆ ν¨μλ₯Ό μμ±
|
32 |
|
33 |
-
def get_text_file(docs):
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
def get_csv_file(docs):
|
47 |
temp_dir3 = tempfile.TemporaryDirectory()
|
@@ -54,12 +76,12 @@ def get_csv_file(docs):
|
|
54 |
# csv_reader = csv.reader(csv_file)
|
55 |
# for row in csv_reader:
|
56 |
# csv_data.append(row)
|
57 |
-
csv_loader = CSVLoader(
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
)
|
62 |
-
csv_data = csv_loader.load()
|
63 |
return csv_data
|
64 |
|
65 |
def get_json_file(docs):
|
|
|
30 |
# κ³Όμ
|
31 |
# μλ ν
μ€νΈ μΆμΆ ν¨μλ₯Ό μμ±
|
32 |
|
33 |
+
# def get_text_file(docs):
|
34 |
+
# temp_dir2 = tempfile.TemporaryDirectory() # μμ λλ ν 리λ₯Ό μμ±ν©λλ€.
|
35 |
+
# temp_filepath2 = os.path.join(temp_dir2.name, docs.name) # μμ νμΌ κ²½λ‘λ₯Ό μμ±ν©λλ€.
|
36 |
+
# with open(temp_filepath2, "wb") as f: # μμ νμΌμ λ°μ΄λ리 μ°κΈ° λͺ¨λλ‘ μ½λλ€.
|
37 |
+
# f.write(docs.getvalue()) # TXT λ¬Έμμ λ΄μ©μ μμ νμΌμ μλλ€.
|
38 |
+
# text_loader = TextLoader(
|
39 |
+
# file_path=temp_filepath2,
|
40 |
+
# txt_schema='',
|
41 |
+
# text_content=False
|
42 |
+
# ) # Use your specific text loader here.
|
43 |
+
# text_data = text_loader.load() # Extract text using the loader.
|
44 |
+
# return text_data # μΆμΆν ν
μ€νΈλ₯Ό λ°νν©λλ€.
|
45 |
+
def get_text_file(txt_filepath):
|
46 |
+
with open(txt_filepath, "r", encoding="utf-8") as file:
|
47 |
+
txt_content = file.read() # Read the content of the TXT file
|
48 |
+
|
49 |
+
text_chunks = get_text_chunks([txt_content]) # Split the text into chunks
|
50 |
+
vectorstore = get_vectorstore(text_chunks) # Create a vector store from text chunks
|
51 |
+
|
52 |
+
conversation_chain = get_conversation_chain(vectorstore) # Create a conversation chain
|
53 |
+
|
54 |
+
# Assuming st.session_state.conversation is used to store conversation state
|
55 |
+
response = st.session_state.conversation({'question': txt_content})
|
56 |
+
|
57 |
+
# Assuming st.session_state.chat_history is used to store chat history
|
58 |
+
st.session_state.chat_history = response['chat_history']
|
59 |
+
|
60 |
+
for i, message in enumerate(st.session_state.chat_history):
|
61 |
+
if i % 2 == 0:
|
62 |
+
st.write(user_template.replace(
|
63 |
+
"{{MSG}}", message.content), unsafe_allow_html=True)
|
64 |
+
else:
|
65 |
+
st.write(bot_template.replace(
|
66 |
+
"{{MSG}}", message.content), unsafe_allow_html=True)
|
67 |
|
68 |
def get_csv_file(docs):
|
69 |
temp_dir3 = tempfile.TemporaryDirectory()
|
|
|
76 |
# csv_reader = csv.reader(csv_file)
|
77 |
# for row in csv_reader:
|
78 |
# csv_data.append(row)
|
79 |
+
# csv_loader = CSVLoader(
|
80 |
+
# file_path=temp_filepath3,
|
81 |
+
# cs_schema='.data[].address',
|
82 |
+
# text_content=False
|
83 |
+
# )
|
84 |
+
# csv_data = csv_loader.load()
|
85 |
return csv_data
|
86 |
|
87 |
def get_json_file(docs):
|