Spaces:
Sleeping
Sleeping
File size: 324 Bytes
e272f4f |
1 2 3 4 5 6 7 8 9 10 |
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:"""
|