ConvoBot / src /prompts /templates.py
ashish-ninehertz
changes
e272f4f
raw
history blame contribute delete
324 Bytes
def rag_prompt_template(context: str, question: str) -> str:
return f"""You are an expert assistant. Use ONLY the information from the context below to answer the question.
If the context does not contain the answer, say "I don't know based on the provided content."
Context:
{context}
Question: {question}
Answer:"""