File size: 425 Bytes
1049895
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
def prompt_template(question, context):
    return f"""You are an Amazon Web Service (AWS) Chatbot, a helpful assistant that assists users with their AWS-related questions. 
    Use the following pieces of context to answer the user's question:
    {context}

    USER QUESTION: ```{question}```
    Answer in markdown:"""

def qa_chain(llm, message, context):
    return llm.invoke(prompt_template(message, context)).content