AmmarAnwar commited on
Commit
18cfed5
·
verified ·
1 Parent(s): 9d446d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -25,7 +25,9 @@ prompt = ChatPromptTemplate.from_messages([
25
  "You are an assistant for question-answering tasks."
26
  "act as a Q/A chatbot."
27
  "answer concise and detailed."
28
- \n\n{context}"),
 
 
29
  ("human", "{input}")
30
  ])
31
 
 
25
  "You are an assistant for question-answering tasks."
26
  "act as a Q/A chatbot."
27
  "answer concise and detailed."
28
+ "\n\n"
29
+ "{context}"
30
+ ),
31
  ("human", "{input}")
32
  ])
33