OhST commited on
Commit
9e64804
1 Parent(s): 62c7ff5

최종 버전

Browse files
Files changed (4) hide show
  1. README.md +5 -4
  2. app.py +170 -0
  3. htmlTemplates.py +44 -0
  4. requirements.txt +13 -0
README.md CHANGED
@@ -1,12 +1,13 @@
1
  ---
2
- title: Streamlit-meta DAG-AI-CHATBOT
3
- emoji: 🌍
4
- colorFrom: red
5
  colorTo: pink
6
  sdk: streamlit
7
- sdk_version: 1.28.2
8
  app_file: app.py
9
  pinned: false
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: Basic DAG AI Chatbot With Llama2
3
+ emoji: 🔥
4
+ colorFrom: green
5
  colorTo: pink
6
  sdk: streamlit
7
+ sdk_version: 1.27.2
8
  app_file: app.py
9
  pinned: false
10
+ license: apache-2.0
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from dotenv import load_dotenv
3
+ from langchain.text_splitter import CharacterTextSplitter, RecursiveCharacterTextSplitter
4
+ from langchain.vectorstores import FAISS
5
+ from langchain.embeddings import HuggingFaceEmbeddings # General embeddings from HuggingFace models.
6
+ from langchain.memory import ConversationBufferMemory
7
+ from langchain.chains import ConversationalRetrievalChain
8
+ from htmlTemplates import css, bot_template, user_template
9
+ from langchain.llms import LlamaCpp # For loading transformer models.
10
+ from langchain.document_loaders import PyPDFLoader, TextLoader, JSONLoader, CSVLoader
11
+ import tempfile # 임시 파일을 생성하기 위한 라이브러리입니다.
12
+ import os
13
+ from huggingface_hub import hf_hub_download # Hugging Face Hub에서 모델을 다운로드하기 위한 함수입니다.
14
+
15
+ # PDF 문서로부터 텍스트를 추출하는 함수입니다.
16
+ # PDF 문서로부터 텍스트를 추출하는 함수입니다.
17
+ def get_pdf_text(pdf_docs):
18
+ temp_dir = tempfile.TemporaryDirectory() # 임시 디렉토리를 생성합니다.
19
+ temp_filepath = os.path.join(temp_dir.name, pdf_docs.name) # 임시 파일 경로를 생성합니다.
20
+ with open(temp_filepath, "wb") as f: # 임시 파일을 바이너리 쓰기 모드로 엽니다.
21
+ f.write(pdf_docs.getvalue()) # PDF 문서의 내용을 임시 파일에 씁니다.
22
+ pdf_loader = PyPDFLoader(temp_filepath) # PyPDFLoader를 사용해 PDF를 로드합니다.
23
+ pdf_doc = pdf_loader.load() # 텍스트를 추출합니다.
24
+ return pdf_doc # 추출한 텍스트를 반환합니다.
25
+
26
+ # 과제
27
+ # 아래 텍스트 추출 함수를 작성
28
+
29
+ def get_text_file(txt_docs):
30
+ temp_dir = tempfile.TemporaryDirectory() # 임시 디렉토리를 생성합니다.
31
+ temp_filepath = os.path.join(temp_dir.name, txt_docs.name) # 임시 파일 경로를 생성합니다.
32
+ with open(temp_filepath, "wb") as f: # 임시 파일을 바이너리 쓰기 모드로 엽니다.
33
+ f.write(txt_docs.getvalue()) # txt 문서의 내용을 임시 파일에 씁니다.
34
+ txt_loader = TextLoader(temp_filepath)
35
+ txt_doc = txt_loader.load()
36
+ return txt_doc
37
+
38
+
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()) # csv 문서의 내용을 임시 파일에 씁니다.
44
+ csv_loader = CSVLoader(file_path=temp_filepath)
45
+ csv_doc = csv_loader.load()
46
+ return csv_doc
47
+
48
+
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(file_path = temp_filepath, jq_schema='.messages[].content', text_content=False)
55
+ json_doc = json_loader.load()
56
+ return json_doc
57
+
58
+
59
+
60
+ # 문서들을 처리하여 텍스트 청크로 나누는 함수입니다.
61
+ def get_text_chunks(documents):
62
+ text_splitter = RecursiveCharacterTextSplitter(
63
+ chunk_size=1000, # 청크의 크기를 지정합니다.
64
+ chunk_overlap=200, # 청크 사이의 중복을 지정합니다.
65
+ length_function=len # 텍스트의 길이를 측정하는 함수를 지정합니다.
66
+ )
67
+
68
+ documents = text_splitter.split_documents(documents) # 문서들을 청크로 나눕니다.
69
+ return documents # 나눈 청크를 반환합니다.
70
+
71
+
72
+ # 텍스트 청크들로부터 벡터 스토어를 생성하는 함수입니다.
73
+ def get_vectorstore(text_chunks):
74
+ # 원하는 임베딩 모델을 로드합니다.
75
+ embeddings = HuggingFaceEmbeddings(model_name='sentence-transformers/all-MiniLM-L12-v2',
76
+ model_kwargs={'device': 'cpu'}) # 임베딩 모델을 설정합니다.
77
+ vectorstore = FAISS.from_documents(text_chunks, embeddings) # FAISS 벡터 스토어를 생성합니다.
78
+ return vectorstore # 생성된 벡터 스토어를 반환합니다.
79
+
80
+
81
+ def get_conversation_chain(vectorstore):
82
+ model_name_or_path = 'TheBloke/Llama-2-7B-chat-GGUF'
83
+ model_basename = 'llama-2-7b-chat.Q2_K.gguf'
84
+ model_path = hf_hub_download(repo_id=model_name_or_path, filename=model_basename)
85
+
86
+ llm = LlamaCpp(model_path=model_path,
87
+ n_ctx=4086,
88
+ input={"temperature": 0.75, "max_length": 2000, "top_p": 1},
89
+ verbose=True, )
90
+ # 대화 기록을 저장하기 위한 메모리를 생성합니다.
91
+ memory = ConversationBufferMemory(
92
+ memory_key='chat_history', return_messages=True)
93
+ # 대화 검색 체인을 생성합니다.
94
+ conversation_chain = ConversationalRetrievalChain.from_llm(
95
+ llm=llm,
96
+ retriever=vectorstore.as_retriever(),
97
+ memory=memory
98
+ )
99
+ return conversation_chain # 생성된 대화 체인을 반환합니다.
100
+
101
+ # 사용자 입력을 처리하는 함수입니다.
102
+ def handle_userinput(user_question):
103
+ print('user_question => ', user_question)
104
+ # 대화 체인을 사용하여 사용자 질문에 대한 응답을 생성합니다.
105
+ response = st.session_state.conversation({'question': user_question})
106
+ # 대화 기록을 저장합니다.
107
+ st.session_state.chat_history = response['chat_history']
108
+
109
+ for i, message in enumerate(st.session_state.chat_history):
110
+ if i % 2 == 0:
111
+ st.write(user_template.replace(
112
+ "{{MSG}}", message.content), unsafe_allow_html=True)
113
+ else:
114
+ st.write(bot_template.replace(
115
+ "{{MSG}}", message.content), unsafe_allow_html=True)
116
+
117
+
118
+ def main():
119
+ load_dotenv()
120
+ st.set_page_config(page_title="Chat with multiple Files",
121
+ page_icon=":books:")
122
+ st.write(css, unsafe_allow_html=True)
123
+
124
+ if "conversation" not in st.session_state:
125
+ st.session_state.conversation = None
126
+ if "chat_history" not in st.session_state:
127
+ st.session_state.chat_history = None
128
+
129
+ st.header("Chat with multiple Files:")
130
+ user_question = st.text_input("Ask a question about your documents:")
131
+ if user_question:
132
+ handle_userinput(user_question)
133
+
134
+ with st.sidebar:
135
+ st.subheader("Your documents")
136
+ docs = st.file_uploader(
137
+ "Upload your PDFs here and click on 'Process'", accept_multiple_files=True)
138
+ if st.button("Process"):
139
+ with st.spinner("Processing"):
140
+ # get pdf text
141
+ doc_list = []
142
+
143
+ for file in docs:
144
+ print('file - type : ', file.type)
145
+ if file.type == 'text/plain':
146
+ # file is .txt
147
+ doc_list.extend(get_text_file(file))
148
+ elif file.type in ['application/octet-stream', 'application/pdf']:
149
+ # file is .pdf
150
+ doc_list.extend(get_pdf_text(file))
151
+ elif file.type == 'text/csv':
152
+ # file is .csv
153
+ doc_list.extend(get_csv_file(file))
154
+ elif file.type == 'application/json':
155
+ # file is .json
156
+ doc_list.extend(get_json_file(file))
157
+
158
+ # get the text chunks
159
+ text_chunks = get_text_chunks(doc_list)
160
+
161
+ # create vector store
162
+ vectorstore = get_vectorstore(text_chunks)
163
+
164
+ # create conversation chain
165
+ st.session_state.conversation = get_conversation_chain(
166
+ vectorstore)
167
+
168
+
169
+ if __name__ == '__main__':
170
+ main()
htmlTemplates.py ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ css = '''
2
+ <style>
3
+ .chat-message {
4
+ padding: 1.5rem; border-radius: 0.5rem; margin-bottom: 1rem; display: flex
5
+ }
6
+ .chat-message.user {
7
+ background-color: #2b313e
8
+ }
9
+ .chat-message.bot {
10
+ background-color: #475063
11
+ }
12
+ .chat-message .avatar {
13
+ width: 20%;
14
+ }
15
+ .chat-message .avatar img {
16
+ max-width: 78px;
17
+ max-height: 78px;
18
+ border-radius: 50%;
19
+ object-fit: cover;
20
+ }
21
+ .chat-message .message {
22
+ width: 80%;
23
+ padding: 0 1.5rem;
24
+ color: #fff;
25
+ }
26
+ '''
27
+
28
+ bot_template = '''
29
+ <div class="chat-message bot">
30
+ <div class="avatar">
31
+ <img src="https://i.ibb.co/cN0nmSj/Screenshot-2023-05-28-at-02-37-21.png" style="max-height: 78px; max-width: 78px; border-radius: 50%; object-fit: cover;">
32
+ </div>
33
+ <div class="message">{{MSG}}</div>
34
+ </div>
35
+ '''
36
+
37
+ user_template = '''
38
+ <div class="chat-message user">
39
+ <div class="avatar">
40
+ <img src="https://i.ibb.co/rdZC7LZ/Photo-logo-1.png">
41
+ </div>
42
+ <div class="message">{{MSG}}</div>
43
+ </div>
44
+ '''
requirements.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ langchain
2
+ llama-cpp-python
3
+ PyPDF2==3.0.1
4
+ faiss-cpu==1.7.4
5
+ ctransformers
6
+ pypdf
7
+ chromadb
8
+ tiktoken
9
+ pysqlite3-binary
10
+ streamlit-extras
11
+ InstructorEmbedding
12
+ sentence-transformers
13
+ jq