13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
15
15
16
+ import logging
16
17
import os
17
18
import sys
18
- import logging
19
- import pandas as pd
20
19
from json import JSONDecodeError
21
20
from pathlib import Path
21
+
22
+ import pandas as pd
22
23
import streamlit as st
23
- from annotated_text import annotation
24
24
from markdown import markdown
25
-
26
25
from ui .utils import (
26
+ file_upload_qa_generate ,
27
+ offline_ann ,
27
28
pipelines_is_ready ,
28
29
semantic_search ,
29
- send_feedback ,
30
- upload_doc ,
31
- file_upload_qa_generate ,
32
- pipelines_version ,
33
- get_backlink ,
34
30
text_to_qa_pair_search ,
35
- offline_ann ,
36
31
)
37
32
38
33
# Adjust to a question that you would like users to see in the search bar when they load the UI:
@@ -77,8 +72,7 @@ def upload():
77
72
for data_file in data_files :
78
73
# Upload file
79
74
if data_file and data_file .name not in st .session_state .upload_files ["uploaded_files" ]:
80
- # raw_json = upload_doc(data_file)
81
- raw_json = file_upload_qa_generate (data_file )
75
+ file_upload_qa_generate (data_file )
82
76
st .session_state .upload_files ["uploaded_files" ].append (data_file .name )
83
77
# Save the uploaded files
84
78
st .session_state .upload_files ["uploaded_files" ] = list (set (st .session_state .upload_files ["uploaded_files" ]))
@@ -148,19 +142,14 @@ def reset_results_qag(*args):
148
142
for data_file in st .session_state .upload_files ["uploaded_files" ]:
149
143
st .sidebar .write (str (data_file ) + " ✅ " )
150
144
151
- hs_version = ""
152
- try :
153
- hs_version = f" <small>(v{ pipelines_version ()} )</small>"
154
- except Exception :
155
- pass
156
145
# Load csv into pandas dataframe
157
146
try :
158
147
df = pd .read_csv (EVAL_LABELS , sep = ";" )
159
148
except Exception :
160
- st .error (f "The eval file was not found." )
149
+ st .error ("The eval file was not found." )
161
150
sys .exit (f"The eval file was not found under `{ EVAL_LABELS } `." )
162
151
163
- ## QA pairs generation
152
+ # QA pairs generation
164
153
# Search bar
165
154
st .write ("### 问答对生成:" )
166
155
context = st .text_input (
@@ -213,7 +202,7 @@ def reset_results_qag(*args):
213
202
st .session_state .qag_results , st .session_state .qag_raw_json = text_to_qa_pair_search (
214
203
context , is_filter = True if is_filter == "是" else False
215
204
)
216
- except JSONDecodeError as je :
205
+ except JSONDecodeError :
217
206
st .error ("👓 An error occurred reading the results. Is the document store working?" )
218
207
return
219
208
except Exception as e :
@@ -229,9 +218,9 @@ def reset_results_qag(*args):
229
218
for count , result in enumerate (st .session_state .qag_results ):
230
219
context = result ["context" ]
231
220
synthetic_answer = result ["synthetic_answer" ]
232
- synthetic_answer_probability = result ["synthetic_answer_probability" ]
221
+ # synthetic_answer_probability = result["synthetic_answer_probability"]
233
222
synthetic_question = result ["synthetic_question" ]
234
- synthetic_question_probability = result ["synthetic_question_probability" ]
223
+ # synthetic_question_probability = result["synthetic_question_probability"]
235
224
st .write (
236
225
markdown (context ),
237
226
unsafe_allow_html = True ,
@@ -247,7 +236,7 @@ def reset_results_qag(*args):
247
236
248
237
st .write ("___" )
249
238
250
- ## QA search
239
+ # QA search
251
240
# Search bar
252
241
st .write ("### 问答检索:" )
253
242
question = st .text_input (
@@ -303,7 +292,7 @@ def reset_results_qag(*args):
303
292
st .session_state .results , st .session_state .raw_json = semantic_search (
304
293
question , top_k_reader = top_k_reader , top_k_retriever = top_k_retriever
305
294
)
306
- except JSONDecodeError as je :
295
+ except JSONDecodeError :
307
296
st .error ("👓 An error occurred reading the results. Is the document store working?" )
308
297
return
309
298
except Exception as e :
0 commit comments