Update app.py
Browse files
app.py
CHANGED
@@ -31,19 +31,17 @@ except Exception as e:
|
|
31 |
def answer_question(question):
|
32 |
try:
|
33 |
question_embedding = embeddings.embed_query(question)
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
36 |
|
37 |
-
|
38 |
-
|
39 |
-
# context = "\n".join([doc.page_content for doc, _ in docs_and_scores]) # 使用 join() 方法
|
40 |
-
# print(context)
|
41 |
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
# answer = llm(prompt)
|
46 |
-
# return answer
|
47 |
except Exception as e:
|
48 |
st.error(f"问答过程出错:{e}")
|
49 |
return "An error occurred during the answering process."
|
|
|
31 |
def answer_question(question):
|
32 |
try:
|
33 |
question_embedding = embeddings.embed_query(question)
|
34 |
+
question_embedding_np = np.array(question_embedding).reshape(1, -1) # The fix!
|
35 |
+
docs_and_scores = db.similarity_search_with_score(question_embedding_np)
|
36 |
+
# 正确处理 docs_and_scores 列表
|
37 |
+
context = "\n".join([doc.page_content for doc, _ in docs_and_scores]) # 使用 join() 方法
|
38 |
+
print(context)
|
39 |
|
40 |
+
prompt = f"请根据以下知识库回答问题:\n{context}\n问题:{question}"
|
41 |
+
print(prompt)
|
|
|
|
|
42 |
|
43 |
+
answer = llm(prompt)
|
44 |
+
return answer
|
|
|
|
|
|
|
45 |
except Exception as e:
|
46 |
st.error(f"问答过程出错:{e}")
|
47 |
return "An error occurred during the answering process."
|