[email protected] commited on
Commit
7993f2c
Β·
1 Parent(s): 14b71a9

edit codes

Browse files
Files changed (1) hide show
  1. app.py +40 -18
app.py CHANGED
@@ -30,18 +30,40 @@ def get_pdf_text(pdf_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
 
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
- file_path=temp_filepath3,
59
- cs_schema='.data[].address',
60
- text_content=False
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):