tykiww commited on
Commit
6ca39c0
1 Parent(s): 346bea2

Update services/qa_service/qna.py

Browse files
Files changed (1) hide show
  1. services/qa_service/qna.py +1 -2
services/qa_service/qna.py CHANGED
@@ -71,8 +71,7 @@ class QAService:
71
  context += full_context[i]["text"]
72
  if (i+1) < transcript_count:
73
  context += "\n\n"
74
-
75
- print(context)
76
  prompt = format_prompt(self.question, context)
77
  output = self.model_pipeline.infer(prompt)
78
 
 
71
  context += full_context[i]["text"]
72
  if (i+1) < transcript_count:
73
  context += "\n\n"
74
+
 
75
  prompt = format_prompt(self.question, context)
76
  output = self.model_pipeline.infer(prompt)
77