zeerd commited on
Commit
b9221b8
·
verified ·
1 Parent(s): 309abbd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -11
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
- return ""
35
- # docs_and_scores = db.similarity_search_with_score(question_embedding)
 
 
 
36
 
37
- # return ""
38
- # # 正确处理 docs_and_scores 列表
39
- # context = "\n".join([doc.page_content for doc, _ in docs_and_scores]) # 使用 join() 方法
40
- # print(context)
41
 
42
- # prompt = f"请根据以下知识库回答问题:\n{context}\n问题:{question}"
43
- # print(prompt)
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."