LiamKhoaLe commited on
Commit
2afe3f5
·
1 Parent(s): 7b77d36
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -251,7 +251,7 @@ class RAGMedicalChatbot:
251
 
252
  # Append contextual chunks from hybrid approach
253
  if contextual_chunks:
254
- parts.append("Relevant context from conversation history:\n" + "\n".join(contextual_chunks))
255
  # Load up guideline (RAG over medical knowledge base)
256
  if knowledge_base:
257
  parts.append(f"Example Q&A medical scenario knowledge-base: {knowledge_base}")
 
251
 
252
  # Append contextual chunks from hybrid approach
253
  if contextual_chunks:
254
+ parts.append("Relevant context from conversation history:\n" + contextual_chunks)
255
  # Load up guideline (RAG over medical knowledge base)
256
  if knowledge_base:
257
  parts.append(f"Example Q&A medical scenario knowledge-base: {knowledge_base}")