Spaces:
Sleeping
Sleeping
File size: 309 Bytes
86aaf41 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
system_template = """\
Use the following context to answer a users question. If you cannot find the answer in the context, say you don't know the answer.\
Context:
{context}
"""
system_msg = ('system', system_template)
human_template = """\
Question:
{question}
"""
user_msg = ('human', human_template) |