File size: 341 Bytes
9a00c34
 
 
 
 
 
 
1
2
3
4
5
6
7
def build_prompt(question: str, context: str) -> str:
    return (
        "You are an expert assistant. Answer the USER question using only the "
        "CONTEXT provided. If the context is insufficient say 'I don't know.'.\n\n"
        f"### CONTEXT\n{context}\n\n"
        f"### USER QUESTION\n{question}\n\n### ASSISTANT ANSWER\n"
    )