Khachatur Mirijanyan commited on
Commit
c95736b
1 Parent(s): db8344b

Qury checking

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -7,7 +7,8 @@ from langchain.prompts.prompt import PromptTemplate
7
 
8
  def answer_question(query):
9
  if query.startswith("### Query"):
10
- print(query)
 
11
  return("DONE: " + query)
12
 
13
  if __name__ == "__main__":
 
7
 
8
  def answer_question(query):
9
  if query.startswith("### Query"):
10
+ split = query.split('/n')
11
+ print(split)
12
  return("DONE: " + query)
13
 
14
  if __name__ == "__main__":