AIE4-Class3-RAG / rag_prompts.py
jet-taekyo's picture
modify text-splliting process
86aaf41
raw
history blame
309 Bytes
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)