Khachatur Mirijanyan commited on
Commit
65e27b3
1 Parent(s): aab2f4a

Query Checking

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