qminh369 commited on
Commit
809eef5
1 Parent(s): 7fa64c5

Upload 2 files

Browse files
Files changed (2) hide show
  1. app.py +201 -0
  2. requirements.txt +5 -0
app.py ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from pymilvus import MilvusClient, connections
2
+ from pymilvus import Collection, DataType, FieldSchema, CollectionSchema, utility
3
+
4
+ from sentence_transformers import SentenceTransformer
5
+ import re
6
+
7
+ import gradio as gr
8
+ import openai
9
+
10
+ import requests
11
+ import json
12
+
13
+ def connect_milvus(endpoint, token):
14
+ connections.connect(
15
+ "default",
16
+ uri=CLUSTER_ENDPOINT,
17
+ token=TOKEN
18
+ )
19
+
20
+ client = MilvusClient(
21
+ uri=CLUSTER_ENDPOINT,
22
+ token=TOKEN
23
+ )
24
+ #print(client)
25
+
26
+ def create_vectordb(COLLECTION_NAME, EMBEDDING_DIM=1024):
27
+
28
+ COLLECTION_NAME = "van_ban_phap_luat"
29
+ check_collection = utility.has_collection(COLLECTION_NAME)
30
+ if check_collection:
31
+ drop_result = utility.drop_collection(COLLECTION_NAME)
32
+ print('drop completed!')
33
+
34
+ chunk_id = FieldSchema(
35
+ name="chunk_id",
36
+ dtype=DataType.INT64,
37
+ is_primary=True,
38
+ description="Chunk ID"
39
+ )
40
+
41
+ chunk_ref = FieldSchema(
42
+ name="chunk_ref",
43
+ dtype=DataType.VARCHAR,
44
+ max_length=512,
45
+ description="Chunk ref")
46
+
47
+ chunk_text = FieldSchema(
48
+ name="chunk_text",
49
+ dtype=DataType.VARCHAR,
50
+ max_length=4096,
51
+ description="Chunk text")
52
+
53
+ chunk_embedding = FieldSchema(
54
+ name="chunk_embedding",
55
+ dtype=DataType.FLOAT_VECTOR,
56
+ dim=EMBEDDING_DIM,
57
+ description="Chunk Embedding")
58
+
59
+ schema = CollectionSchema(
60
+ fields=[chunk_id, chunk_ref, chunk_text, chunk_embedding],
61
+ auto_id=False,
62
+ description="Vector Store Chunk using multilingual-e5-large")
63
+
64
+ collection = Collection(
65
+ name=COLLECTION_NAME,
66
+ schema=schema
67
+ )
68
+
69
+ entities = [ids, rules, chunks, embeddings]
70
+ ins_resp = collection.insert(entities)
71
+ ins_resp
72
+
73
+ collection.flush()
74
+
75
+ index_params = {
76
+ "index_type": "IVF_FLAT",
77
+ "metric_type": "COSINE", # L2
78
+ "params": {}
79
+ }
80
+ collection.create_index(
81
+ field_name=chunk_embedding.name,
82
+ index_params=index_params
83
+ )
84
+
85
+ collection.load()
86
+ #return None
87
+
88
+ def load_vectordb(COLLECTION_NAME):
89
+
90
+ collection = Collection(
91
+ name=COLLECTION_NAME,
92
+ #schema=schema
93
+ )
94
+ #print(collection)
95
+ #print(collection.has_index())
96
+ return collection
97
+
98
+ def load_model(model_name):
99
+ model = SentenceTransformer(model_name)
100
+
101
+ return model
102
+
103
+ def search_chunks(query, topk=5):
104
+ # search
105
+ search_params = {
106
+ "metric_type": "COSINE", # L2
107
+ "params": {"level": 2}
108
+ }
109
+
110
+ collection = load_vectordb(COLLECTION_NAME)
111
+
112
+ embed_query = model.encode(query)
113
+ results = collection.search(
114
+ [embed_query],
115
+ #anns_field=chunk_embedding.name,
116
+ anns_field="chunk_embedding",
117
+ param=search_params,
118
+ limit=topk,
119
+ guarantee_timestamp=1,
120
+ output_fields=['chunk_ref', 'chunk_text'] #
121
+ )
122
+
123
+ refs, relevant_chunks = [], []
124
+
125
+ pattern = r"'chunk_ref': '([^']*)', 'chunk_text': '([^']*)'"
126
+
127
+ #print(len(results[0]))
128
+
129
+ for sample in results[0]:
130
+ #print(sample)
131
+ #print(type(sample))
132
+ matches = re.findall(pattern, str(sample))
133
+
134
+ # Lặp qua các kết quả tìm được và thêm vào list
135
+ for match in matches:
136
+ refs.append(match[0])
137
+ relevant_chunks.append(match[1])
138
+
139
+ return refs, relevant_chunks
140
+
141
+ #return results[0]
142
+ #print(len(results[0]))
143
+ #return results
144
+
145
+ CLUSTER_ENDPOINT = "https://in03-d63abe0e8a8f47b.api.gcp-us-west1.zillizcloud.com"
146
+ TOKEN = "6529d1f59d5e3d38d6135ec9ddf5820a9c38e3db6ca22c53b3aa2ad9c9148e29ef0f11c312bee71f1544da350f85320b598a30f3"
147
+ COLLECTION_NAME = "van_ban_phap_luat"
148
+ MODEL_NAME = 'qminh369/datn-dense_embedding'
149
+ #query = "Cơ quan quản lý giáo dục và đào tạo phải làm gì để đảm bảo pháp luật về giao thông đường bộ được đưa vào chương trình giảng dạy?" # 7
150
+ #query = "Trách nhiệm và quản lý hoạt động giao thông đường bộ được phân công và phân cấp như thế nào?" # 4
151
+ #query = "Những trường hợp cho phép chở người trên xe ô tô chở hàng?" # 21
152
+
153
+ connect_milvus(CLUSTER_ENDPOINT, TOKEN)
154
+ #load_vectordb(COLLECTION_NAME)
155
+ model = load_model(MODEL_NAME)
156
+
157
+ model_gpt_3_5 = "gpt-3.5-turbo"
158
+ openai.api_key = "sk-proj-P6SydZ6cYprqmpMH6BqdT3BlbkFJT4hjCdGZpGZPfcpBqi7q"
159
+
160
+ def write_prompt(doc_relevant, question):
161
+
162
+ PROMPT = "Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n\n{question}\n\n### Input:\n{doc_relevant}"
163
+
164
+ input_prompt = PROMPT.format_map(
165
+ {"doc_relevant": doc_relevant, "question": question}
166
+ )
167
+ return input_prompt
168
+
169
+ def answer(question):
170
+
171
+ refs, relevant_chunks = search_chunks(question)
172
+ #print(results)
173
+ system_msg = "Hãy trả lời câu hỏi sau dựa trên thông tin được cung cấp. Nếu thông tin được cung cấp không liên quan dến câu hỏi thì trả về câu trả lời 'Không có thông tin'. Lưu ý các câu trả lời đều sử dụng Tiếng Việt"
174
+ user_msg = write_prompt(relevant_chunks, question)
175
+
176
+ response = openai.ChatCompletion.create(model=model_gpt_3_5,
177
+ messages=[{"role": "system", "content": system_msg},
178
+ {"role": "user", "content": user_msg}])
179
+
180
+ response = response["choices"][0]["message"]["content"]
181
+
182
+ ref = "\n" + "Trích dẫn từ: " + refs[0]
183
+
184
+ response = response + ref
185
+
186
+ return response.strip()
187
+
188
+ def chatbot(question, history=[]):
189
+ output = answer(question)
190
+ history.append((question, output))
191
+ return history, history
192
+
193
+ demo = gr.Interface(
194
+ fn=chatbot,
195
+ inputs=["text", "state"],
196
+ outputs=["chatbot", "state"])
197
+
198
+ demo.queue().launch(share=True)
199
+
200
+
201
+
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ sentence-transformers
2
+ openai
3
+ grpcio==1.60.0
4
+ pymilvus
5
+ gradio